Can anyone tell how to display the post URL of a blogspot blog in a Text area on the same blog ? - For example ; The original url is http://example.blogspot.com/2009/10/this-is-an-example.html (this is only for demo,no site exists ) Post title - This is an example - I want to create to create a text box & display this URL in this format <a href="http://example.blogspot.com/2009/10/this-is-an-example.html" >This is an Example</a> Code (markup): inside that text box,so people can copy the link & post it on their blog - If anyone knows the format to display ,pls share it here.
<textarea readonly='readonly'><a href=<data:post.url/>><data:post.title/></a></textarea> Code (markup): Paste this code as it is in the blogger template where you want to put this text box. Also, adjust the height and width of the text by using those attributes. I guess this is what you asked for.