开发者

SharePoint Field Forcing Links To be Relative

开发者 https://www.devze.com 2022-12-16 17:49 出处:网络
Ive got Note field with FullHTML turned on. I\'m trying to storage an image tag with src that points to the server I\'m currently on. I set the field to:

Ive got Note field with FullHTML turned on. I'm trying to storage an image tag with src that points to the server I'm currently on. I set the field to:

<img src="http://servername/_layouts/images/Company/test.jpg" />

I then immediately try to read the value back out, and I get:

<img src="/_layouts/images/开发者_如何学编程Company/test.jpg" /> 

SharePoint has graciously stripped it's own servername out of the url to make it relative. This is going out in an e-mail so I need it to be absolute.

Anyone know how to stop this behavior?


This is good behavior, if you migrate the site somewhere else it will still work :) You could probably write an event handler on your list to undo this.

How does the "This is going out in an e-mail so I need it to be absolute." work?

Seems like a custom process? Why don't you add making absolute links there.

0

精彩评论

暂无评论...
验证码 换一张
取 消