How can I store a url reference in a text field.
I want the field to display an image that is stored in "C\mydocuments\image" folder. 😕
you should always store the web path like http://www.yoursite.com/images/image1.jpg" and not the system path as you have given other wise it will look for the image on the client side and not on the server side.
other work around to this is store the relative path instead of absolute path
What do you mean by relative path???