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

multithreading - Exception in Application constructor -

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

windows - CertCreateCertificateContext returns CRYPT_E_ASN1_BADTAG / 8009310b -