I cannot get the full URL of the page I'm working on. This is the url I want to get http://localhost:54570/Shipment/ShipmentDetails.aspx?HawbBLNo=NEC00000004#BFT . The result is only http://local/Shipment/ShipmentDetails.aspx?HawbBLNo=NEC00000004 in this code
protected void btnSave_Click(object sender, EventArgs e) { url = HttpContext.Current.Request.Url.AbsoluteUri; UpdateDetails(); Response.Redirect(url); }
user3055923
source share