I am getting a data from web service in which I am getting url
/login/test/abbb/...
here I have to append url like
www.google.com//login/test/abbb/...
and I am doing like this
<a href='<%#string.Concat("www.google.com")+Eval("EncryptData")%>'>Test</a>
while on clicking it is also appending http://localhost:19456/www.google.com//login/test/abbb/... to url I just want to trim that part
http://localhost:19456
Hi pvermacs,
Add http:// or https:// in front of the URL.
<a href='<%#string.Concat("http://www.google.com")+Eval("EncryptData")%>'>Test</a>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.