Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Close WebForm Form

Reply
Thread Tools

Close WebForm Form

 
 
Joel Finkel
Guest
Posts: n/a
 
      09-08-2003
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


 
Reply With Quote
 
 
 
 
Mark Kamoski
Guest
Posts: n/a
 
      09-08-2003


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



 
Reply With Quote
 
 
 
 
Joel Finkel
Guest
Posts: n/a
 
      09-08-2003
Mark,

Thank you. Your answer provided exactly the insight I needed. In the web
environemnt, I cannot use the modal windows paradigm. I have to use a
single-window wizard paradigm. Once you triggered this insight, I was able
to easily modify my code. It took me a while to find the two .NET ways of
going from page to page, however.

1) Response.Redirect()

2) Server.Transfer()

It is interesting that I missed this in the introductory documentation I
read. Maybe like many, I just plugged everything in and fiddled with the
knobs before reading every line of the owner's manual. On the other hand,
"Server.Transfer" is found on only two pages in the .NET Framework
Developer's Guide and "Response.Redirect" only appears on three pages, all
of which have to do with user authentication. It seems like this is a
pretty basic technique that one needs to know about!

Thanks again.

/Joel


"Mark Kamoski" <> wrote in message
news:...
>
>
> 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
>
>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to close a TCP socket? (TCPSocket#close doesn't close it) IƱaki Baz Castillo Ruby 7 01-12-2010 01:32 PM
Using one webform to set a value on another webform =?Utf-8?B?bXN1aw==?= ASP .Net 1 07-12-2006 07:23 PM
Close a WebForm? SetFocus in a WebForm? David Laub ASP .Net Web Controls 2 02-21-2004 04:53 AM
no code in webform using vs.net, but in webform using notepad timmso ASP .Net 1 12-12-2003 04:30 PM
Including WebForm Image Control in a Webform Table Control titof ASP .Net 0 07-24-2003 01:01 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57