i published asp.net web app in iis by adding application alias BTEST

Sunil Shinde
1
Reputation point
i published asp.net web app in iis on my local machine by adding application alias BTEST and i am not able to navigate with url. i see <li id="VehicleType"><a href="http://localhost:83/BTEST/Master/CabTypeMaster.aspx">Vehicle Type </a></li> but on hover li i see localhost:83/BTEST/Master/CabTypeMaster.aspx at bottom left corner.because of it i am not able to navigate at url. i used below code and i am getting logout. can anyone help me with this?
protected void Page_Load(object sender, EventArgs e)
{
if (Session["LOGIN_USER_ID"] == null)
{
Response.Redirect("Logout.aspx");
}
if (!IsPostBack) { logerrors.Log_actitviy("Employee Master", "Visited Employee Master Page", ""); }
//GApiURL.Value = StringCrypt.Decrypt(System.Configuration.ConfigurationManager.AppSettings["APIURL"].ToString());
}
Sign in to answer