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

Sunil Shinde 1 Reputation point
2024-01-10T06:43:42.6533333+00:00

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());
}
Internet Information Services
ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,590 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.