GridViewのRowCommandイベントからページをリクエストすると、次のコードが表示されます
protected void grdClaimList_RowCommand(object sender, GridViewCommandEventArgs e)
{
switch (e.CommandName)
{
case "ViewClaim":
Response.Redirect("ClaimStatus.aspx?id=" + e.CommandArgument);
break;
}
}
クエリ文字列をURLから非表示にしたいのですが、可能ですか?はいの場合、方法を教えてください。