Joel--
Here are some thoughts.
Regarding the question about closing a form, (which in your example below
seems to mean "closing a browser window"), it seems that this a distinctly
client-side thing to do. As far as I can tell, JavaScript must be used in
this case; if not, then I've been lied to many times. However, if, instead
of opening a new window, you had a post from one page to the next and then
back to the first, then that would be easier and DotNet surely could handle
it. Personally, I am against opening new browser windows (unless absolutely
necessary) because I like the control DotNet provides on the server and I
try to avoid JavaScript because it can be turned off manually by the
enduser. But, of course, there are 2 camps of thoughts here; (I'll leave it
to the other side to argue their "case" for JavaScript and/or opening
browser windows.)
Regarding the question about telling a page to refresh, a message or flag
of some kind must be used. If you use JavaScript to close the form, then
you can simple re-navigate to the form. Session, QueryString, and a few
other mechanisms can capture this flag. However, even for this question, I
recommend using a wizard-style navigation. Show Page1. Click link and show
Page2. Enter information and Save/Cancel, redirecting to Page1, and so on.
That's what I think, FWIW.
HTH.
--Mark
"Joel Finkel" <> wrote in message
news:...
Please excuse what may be a mind-blowingly simple question, but I cannot
find the answer anywhere.
I have a webform that displays a list of data. The user click on a link
and is displayed a second webform that shows details and allows her to
enter new information, which is stored in the database. She may also press
a Cancel button.
In either case, after the new data are stored or if the Cancel button in
pressed, I want this webform to vanish, leaving only the original webform,
which then has to rebind its data, so that they are updated.
QUESTION: How do I close the second webform, where the new informaiton has
been entered (or cancelled). so that it vanishes? I know I can set up a
Javascript close() command, but I would like to know what the canonical
method is using the .NET architecture.
In addition, how does the first webform know when to rebind the data to
obtain the updated values for the row that changed?
Thanks in advance for all suggestions and pointers into the documentation.
-Joel Finkel