CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Feb 2007
    Posts
    5

    displaying welcome message on a web page

    Guys i want to display a welcome message to a logged in user on all my web pages.
    Please help on how this could be achieved.

    Biodun

  2. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: displaying welcome message on a web page

    Use javascript alert.
    Code:
    <body onload = "alert('welcome');" >
    You can also use a label to display a welcome message.

  3. #3
    Join Date
    Nov 2002
    Location
    Devon, UK
    Posts
    212

    Re: displaying welcome message on a web page

    Assuming ASP.NET 2.0 or later, use the LoginView control.

    T
    Some cause happiness wherever they go; others, whenever they go.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured