I have lengthy URL’s in my code I need to use, like:
http://abcabc.com/xyz/form.aspx/http://one.aspx
http://abcabc.com/xyz/form.aspx/http://two.aspx
http://abcabc.com/xyz/form.aspx/http://three.aspx
Here, can I use a variable like
Var links = “http://abcabc.com/xyz”;
Now, how to pass this variable in the above links?
