这个问题与Is postback works only in pageload 重复? 当我的查询字符串中有值时,我想发回页面。见代码
if (Request.QueryString["HotelID"] != null)
// here i want to post back
{
我怎样才能发回页面?
这个问题与Is postback works only in pageload 重复? 当我的查询字符串中有值时,我想发回页面。见代码
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());
}
希望能帮助到你:)
尝试这个;
if(!String.IsNullOrEmpty(Request.QueryString["HotelID"]))
{
Response.Redirect(Request.UrlReferrer.ToString());
or
Response.Redirect("yourpagewithpath.aspx");
}