asp.net - How to hide querystring value in url -


requesting page gridview's rowcommand event, here code

    protected void grdclaimlist_rowcommand(object sender, gridviewcommandeventargs e) {     switch (e.commandname)     {         case "viewclaim":             response.redirect("claimstatus.aspx?id=" + e.commandargument);             break;     }          } 

i hide query string url, possible? if yes, please let me know how?

you can use session variables or view states instead.


Comments

Popular posts from this blog

how to insert data php javascript mysql with multiple array session 2 -

React Native allow user to reorder elements in a scrollview list -

multithreading - Exception in Application constructor -