【发布时间】:2014-01-20 23:16:23
【问题描述】:
我无法获得我正在处理的页面的完整网址。这是我要获取的网址http://localhost:54570/Shipment/ShipmentDetails.aspx?HawbBLNo=NEC00000004#BFT结果在此代码上只有http://local/Shipment/ShipmentDetails.aspx?HawbBLNo=NEC00000004
protected void btnSave_Click(object sender, EventArgs e)
{
url = HttpContext.Current.Request.Url.AbsoluteUri;
UpdateDetails();
Response.Redirect(url);
}
【问题讨论】: