how to add parameters to url in c#?

1 replies
my site is like http://www.test.com/customer.aspx?id=1

I want to add ' name=john ' parameter in url i.e http://www.test.com/customer.aspx?id=1&name=john and so if put this url http://www.test.com/customer.aspx?id=1 and enter it should automatically add the name parameter in the url.. anyone help me pls?
#add #parameters #url
  • Profile picture of the author dgeramemo
    As soon as you press enter, request goes to server. In server you can track global.asax begin request event and in that you can add parameter to url and do server.transfer.
    {{ DiscussionBoard.errors[10441796].message }}

Trending Topics