查询字符串上的回发页面

本文关键字:字符串 查询 | 更新日期: 2023-09-27 18:04:55

这个问题是重复的回发只在页面加载?我想张贴回页时,我有在我的查询字符串值。看到代码

if (Request.QueryString["HotelID"] != null)
// here i want to post back 
{

查询字符串上的回发页面

你可以这样做:

if (Request.QueryString["HotelID"] != null)
{
    Page_Load(sender, e);
}

或:

if (Request.QueryString["HotelID"] != null)
{
    Response.Redirect(Page.AppRelativeVirtualPath.ToString());
}

希望有帮助

try this;

if(!String.IsNullOrEmpty(Request.QueryString["HotelID"]))
{
     Response.Redirect(Request.UrlReferrer.ToString());
    or
     Response.Redirect("yourpagewithpath.aspx");
}