Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Question on navigation between pages

Reply
Thread Tools

Question on navigation between pages

 
 
Bill Gower
Guest
Posts: n/a
 
      08-01-2007
I have a web app that will basically have two types of web forms, a locator
form with a datagrid and a detail form. The locator form will display a
list of objects such as customers etc. The user will be able to either
click a button to create a new object, click a link to edit an existing
object or click delete to delete an object. If adding a new record or
editing an existing I will display a detail form to fill in. The user will
fill in the info and when done save the record and record to the locator
form. I am torn between using javascript open to pop up the detail form and
then save will close it to return to the form below or to move to a new
browser window to display the detail form and then redirect after saving.
Which is the more accepted for data entry web sites and is more user
friendly?


Bill


 
Reply With Quote
 
 
 
 
bruce barker
Guest
Posts: n/a
 
      08-01-2007
as controlling two windows is difficult (popup blockers), a more common
approach is to use a floating div. the div would contain the detail
data, and javascript can display it. this will require javascript to get
smooth and quick.

-- bruce (sqlwork.com)

Bill Gower wrote:
> I have a web app that will basically have two types of web forms, a locator
> form with a datagrid and a detail form. The locator form will display a
> list of objects such as customers etc. The user will be able to either
> click a button to create a new object, click a link to edit an existing
> object or click delete to delete an object. If adding a new record or
> editing an existing I will display a detail form to fill in. The user will
> fill in the info and when done save the record and record to the locator
> form. I am torn between using javascript open to pop up the detail form and
> then save will close it to return to the form below or to move to a new
> browser window to display the detail form and then redirect after saving.
> Which is the more accepted for data entry web sites and is more user
> friendly?
>
>
> Bill
>
>

 
Reply With Quote
 
 
 
 
vincent.apesa@gmail.com
Guest
Posts: n/a
 
      08-01-2007
Bill,
I've also been avoiding popups for similar reasons. The floating DIV
approach is ok too but if you plan
to use UpdatePanels and other Ajax controls inside of them it can
cause problems.

Latetly, I have been directing the user to another page. It's much
safer and always works.

Vince

On Aug 1, 4:11 pm, "Bill Gower" <billgo...@charter.net> wrote:
> I have a web app that will basically have two types of web forms, a locator
> form with a datagrid and a detail form. The locator form will display a
> list of objects such as customers etc. The user will be able to either
> click a button to create a new object, click a link to edit an existing
> object or click delete to delete an object. If adding a new record or
> editing an existing I will display a detail form to fill in. The user will
> fill in the info and when done save the record and record to the locator
> form. I am torn between using javascript open to pop up the detail form and
> then save will close it to return to the form below or to move to a new
> browser window to display the detail form and then redirect after saving.
> Which is the more accepted for data entry web sites and is more user
> friendly?
>
> Bill



 
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 make navigation buttons appear on all pages? Talal Itani HTML 49 02-10-2007 09:31 PM
Disable the navigation buttons for IE navigation toolbar Laurahn ASP .Net 3 02-06-2007 04:17 AM
Sortable tables with multiple pages navigation Raphas Javascript 3 11-01-2006 11:07 AM
Horizontal Menu Navigation Web Control - Spaces Between Menu Items Philip ASP .Net Web Controls 1 03-21-2006 01:55 PM
Keep data in servercontrol between navigation Simon ASP .Net 1 03-03-2004 02:22 AM



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