Opening anoter .aspx window from the parent .aspx main project using C#

  • Thread starter Thread starter Microsoft
  • Start date Start date
M

Microsoft

I need to open a login window. So I designed another .aspx window and am
trying to get it to come up but I don't know the command(s) todo so.

Thanks in advance
 
it will be clientside code.
window.open()
or an HREF with a TARGET attribute
 
Maybe this is not what you're looking for, but [ASP.NET Forms
Authentication] can take care of redirecting users to a custom login form,
and once authenticated, redirects the user back to the form they were
originally requesting. You don't need to write any code to make it do this
(other than the credential validation code) - you just have to create the
requried entries in the site's Web.config file. This might save you a bunch
of work.

HTH

Bob
MCSD, MCDBA, MCSA, MCSE
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top