How do I append static information to my URL string. For example myfirst page looks like this:http://localhost/form1.aspxI want it to look like thishttp://localhost/form1.aspx/?Product=Test?Version=Test?, etc....
sub page_load(s as object, e as eventargs) IF request("QUERY_STRING")="" response.redirect "?Product=Test&Version=Test&x=7 END IFend sub