I'm trying to parse longitude and latitude into an anchor address
string. It seems to be a straightforward enough idea, but I just can't
seem to make it work. I've tried parsing literals into the string like this:
<a href="http://www.mysite.com/" & <asp:literal runat="server"
id="MyLiteral" & "rest of address string">
But this only passes the address up the first quote mark. I've also
tried constructing the entire string and just putting it into the anchor
tag like this:
<a href=<asp:liter al runat="server" id="MyLiteral"
I've tried a dozen different permutations of this idea but none of them
work, and none of my usual trusty help forums seem to address this
question. Is there a way to do this?
string. It seems to be a straightforward enough idea, but I just can't
seem to make it work. I've tried parsing literals into the string like this:
<a href="http://www.mysite.com/" & <asp:literal runat="server"
id="MyLiteral" & "rest of address string">
But this only passes the address up the first quote mark. I've also
tried constructing the entire string and just putting it into the anchor
tag like this:
<a href=<asp:liter al runat="server" id="MyLiteral"
I've tried a dozen different permutations of this idea but none of them
work, and none of my usual trusty help forums seem to address this
question. Is there a way to do this?
Comment