我正在重定向到我的 asp.net 应用程序中的一个页面,使用该页面在 url 中传递一个参数。
HttpApplication app = (HttpApplication) sender;
HttpResponse response = app.Context.Response;
app.Response.Redirect("~/auth/SignOn.aspx?capath=" + capath);
有没有办法发送执行或直接到该页面并传递参数而不在 url 中显示它?谢谢。