New Page using Redirect?

G

Guest

I have a web application and need to redirect to a another page. Is there
any way to see the redirected page in a new page? (that's keeping the sending
page visible)

Thanks!!!

Raul
 
D

Dave

If you want to pop-up a new window when a form is submitted set the "target" of the form to "_blank" or "_new". The default is
"_self" which posts the data to the same browser instance (same window).

Here's the complete list of "target" values that IE supports (from the online MSDN Library):

_blank Load the linked document into a new blank window. This window is not named.
_media Load the linked document into the HTML content area of the Media Bar. Available in Internet Explorer 6 or later.
_parent Load the linked document into the immediate parent of the document the link is in.
_search Load the linked document into the browser search pane. Available in Internet Explorer 5 or later.
_self Default. Load the linked document into the window in which the link was clicked (the active window).
_top Load the linked document into the topmost window.
 
G

Guest

Dave:
Sorry, Dave, I'm new at this. I didn't find the "target" property in the
web form. Can you be more specific?
 
G

gerry

To access the properties for the Form - edit the aspx page , go to into the
HTML view and click on the form tag.
Some of the properties will then be available in the property window.
Or hit space and intellisense pops up a list of form properties and their
possible values.
 

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

Top