You must Sign In to post a response.
  • Category: .NET

    How to Design Following Layout

    Hi

    I have design login page with bootstrap in c#. Now i need after successfully login username and logout need dropdownlist menu in my Home.aspx How will do this any one guide this.
  • #765782
    Hi,

    I never implement this task, but as per my understanding the post, when user is available we have to customize the dropdownlist; like add the user details and logout details to dropdown.

    Ex:

    if(session["User"]!=null)
    {
    ddl.Items.Add(Session["User"].Tostring());
    ddl.Items.Add("Logout");
    }


    I gave you overview only, but you need to do more customization for this, like Logout you should implement click event etc..

    --------------------------------------------------------------------------------
    Give respect to your work, Instead of trying to impress your boss.

    N@veen
    Blog : http://naveens-dotnet.blogspot.in/


  • Sign In to post your comments