Redirect Method

  • Thread starter Thread starter ruca
  • Start date Start date
R

ruca

Hi

Can I set the target of a page in Response.Redirect????
Like this:
I have a page that have 2 frames: contens and main (this are the names)
When I click in one button I want that the result page appears in one or
another page.
For example in a Login page:
When I click in Login button I want that
if login is correct I want that the result page appears in the same
frame (in this case is contents) that were am I

if login is incorrect I want that the result page appears in the other
frame (in this case is Main) that were am I

How can I do this with Response.Redirect("")?????
 
you dont.... serverside events dont really know about frames, etc.
I suggest going with user controls instead of frames. Same result with much
better interoperability.
 
Back
Top