Open another .aspx page

Open another .aspx page

am 30.01.2008 16:13:06 von id10t error

Hello,

I have a login that will be the first page the user sees. Once the
user type in the username and password and click on the login button I
want to close the login.aspx page and goto the Menu.aspx page. How do
i do this. I am using vb.net. Thank you in advance for your help.

Re: Open another .aspx page

am 30.01.2008 16:22:01 von Eliyahu Goldin

If you are with asp.net 2.0 or greater, look at the Login control. It can
handle many if not all of your login needs. Property DestinationPageUrl
specifies where to proceed on successful login.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


"id10t error" wrote in message
news:445a9d96-791b-47d4-8cd6-a34d0abca473@e6g2000prf.googleg roups.com...
> Hello,
>
> I have a login that will be the first page the user sees. Once the
> user type in the username and password and click on the login button I
> want to close the login.aspx page and goto the Menu.aspx page. How do
> i do this. I am using vb.net. Thank you in advance for your help.

Re: Open another .aspx page

am 30.01.2008 16:22:33 von Aidy

Response.Redirect ("Menu.aspx")

"id10t error" wrote in message
news:445a9d96-791b-47d4-8cd6-a34d0abca473@e6g2000prf.googleg roups.com...
> Hello,
>
> I have a login that will be the first page the user sees. Once the
> user type in the username and password and click on the login button I
> want to close the login.aspx page and goto the Menu.aspx page. How do
> i do this. I am using vb.net. Thank you in advance for your help.
>

Re: Open another .aspx page

am 30.01.2008 16:33:32 von id10t error

On Jan 30, 10:22=A0am, "Eliyahu Goldin"
wrote:
> If you are with asp.net 2.0 or greater, look at the Login control. It can
> handle many if not all of your login needs. Property DestinationPageUrl
> specifies where to proceed on successful login.
>
> --
> Eliyahu Goldin,
> Software Developer
> Microsoft MVP [ASP.NET]http://msmvps.com/blogs/egoldinhttp://usableasp.net =

>
> "id10t error" wrote in message
>
> news:445a9d96-791b-47d4-8cd6-a34d0abca473@e6g2000prf.googleg roups.com...
>
>
>
> > Hello,
>
> > I have a login that will be the first page the user sees. Once the
> > user type in the username and password and click on the login button I
> > want to close the login.aspx page and goto the Menu.aspx page. How do
> > i do this. I am using vb.net. Thank you in advance for your help.- Hide =
quoted text -
>
> - Show quoted text -

Thank you for your help Aidy.

Eliyahu,

I did look at the login control. It had alot more information then i
needed. Plus I was not sure how to make it look at a database file to
match the username and password. Once I get more time I will look at
this control but it was easy enough to make on myself with a few
textboxes. I am not going to let the user change there password.