Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Design Question

Reply
Thread Tools

Design Question

 
 
=?Utf-8?B?Sko=?=
Guest
Posts: n/a
 
      06-15-2005
Hi,


Ok I was reading an old ASP 3.0 Book and I noticed that when designing web
applications. Everything that us windows form and vb programmers would do was
to put all functions relating to a certain area in one form. Like for example
I would have an employee timesheet that in a window form would do the
adding/updating/deleting etc. in one form. But from my reading of this ASP
book adding a timesheet would be put on one page, updating in another and
deleting in another. So my question to you guys is this the way I should be
design my apps in ASP.net? Should I brake out the different functionality
related to one particular task into different aspx pages? How do you guys
design your web apps?

Thanks,

JJ
 
Reply With Quote
 
 
 
 
Steve C. Orr [MVP, MCSD]
Guest
Posts: n/a
 
      06-15-2005
These days we more often put related functionality into a single page.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net


"JJ" <> wrote in message
news:C48985AC-6341-47A8-9F40-...
> Hi,
>
>
> Ok I was reading an old ASP 3.0 Book and I noticed that when designing
> web
> applications. Everything that us windows form and vb programmers would do
> was
> to put all functions relating to a certain area in one form. Like for
> example
> I would have an employee timesheet that in a window form would do the
> adding/updating/deleting etc. in one form. But from my reading of this ASP
> book adding a timesheet would be put on one page, updating in another and
> deleting in another. So my question to you guys is this the way I should
> be
> design my apps in ASP.net? Should I brake out the different functionality
> related to one particular task into different aspx pages? How do you guys
> design your web apps?
>
> Thanks,
>
> JJ



 
Reply With Quote
 
 
 
 
=?Utf-8?B?Sko=?=
Guest
Posts: n/a
 
      06-15-2005
Ok So you do like adding/updating/deleting of related functionality in one
page now. No Separation like in the good old days of ASP. Correct?

What do you do if the one page runs slow for someone that doesn't have a
cable connection to the internet. It's Satellite. Would you then create a
separate break out of pages for those individuals?

JJ

"Steve C. Orr [MVP, MCSD]" wrote:

> These days we more often put related functionality into a single page.
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> http://SteveOrr.net
>
>
> "JJ" <> wrote in message
> news:C48985AC-6341-47A8-9F40-...
> > Hi,
> >
> >
> > Ok I was reading an old ASP 3.0 Book and I noticed that when designing
> > web
> > applications. Everything that us windows form and vb programmers would do
> > was
> > to put all functions relating to a certain area in one form. Like for
> > example
> > I would have an employee timesheet that in a window form would do the
> > adding/updating/deleting etc. in one form. But from my reading of this ASP
> > book adding a timesheet would be put on one page, updating in another and
> > deleting in another. So my question to you guys is this the way I should
> > be
> > design my apps in ASP.net? Should I brake out the different functionality
> > related to one particular task into different aspx pages? How do you guys
> > design your web apps?
> >
> > Thanks,
> >
> > JJ

>
>
>

 
Reply With Quote
 
Steve C. Orr [MVP, MCSD]
Guest
Posts: n/a
 
      06-15-2005
If the problem was that the page was too big, then maybe I would.
But there are other things that could be the problem, such as an
unnecessarily large ViewState or long running database queries.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net


"JJ" <> wrote in message
news:34D02B91-8DB1-4D9C-8192-...
> Ok So you do like adding/updating/deleting of related functionality in one
> page now. No Separation like in the good old days of ASP. Correct?
>
> What do you do if the one page runs slow for someone that doesn't have a
> cable connection to the internet. It's Satellite. Would you then create a
> separate break out of pages for those individuals?
>
> JJ
>
> "Steve C. Orr [MVP, MCSD]" wrote:
>
>> These days we more often put related functionality into a single page.
>>
>> --
>> I hope this helps,
>> Steve C. Orr, MCSD, MVP
>> http://SteveOrr.net
>>
>>
>> "JJ" <> wrote in message
>> news:C48985AC-6341-47A8-9F40-...
>> > Hi,
>> >
>> >
>> > Ok I was reading an old ASP 3.0 Book and I noticed that when designing
>> > web
>> > applications. Everything that us windows form and vb programmers would
>> > do
>> > was
>> > to put all functions relating to a certain area in one form. Like for
>> > example
>> > I would have an employee timesheet that in a window form would do the
>> > adding/updating/deleting etc. in one form. But from my reading of this
>> > ASP
>> > book adding a timesheet would be put on one page, updating in another
>> > and
>> > deleting in another. So my question to you guys is this the way I
>> > should
>> > be
>> > design my apps in ASP.net? Should I brake out the different
>> > functionality
>> > related to one particular task into different aspx pages? How do you
>> > guys
>> > design your web apps?
>> >
>> > Thanks,
>> >
>> > JJ

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?U2hhaWxlc2g=?=
Guest
Posts: n/a
 
      07-13-2005
Hi Steve,

I am developing an asp.net application using c# and asp.net 2.0 beta 2. I
started developing this page usign beta1. In beta 1 I have written some code
in Page_LoadComplete(object sender, EventArgs e) events of page. It was
working fine. But after I installed beta 2.0 Page_LoadComplete events is not
firing at all. Can u guide me how can I achieve this goal?

Thankx in advance.
Shailesh.

"Steve C. Orr [MVP, MCSD]" wrote:

> These days we more often put related functionality into a single page.
>
> --
> I hope this helps,
> Steve C. Orr, MCSD, MVP
> http://SteveOrr.net
>
>
> "JJ" <> wrote in message
> news:C48985AC-6341-47A8-9F40-...
> > Hi,
> >
> >
> > Ok I was reading an old ASP 3.0 Book and I noticed that when designing
> > web
> > applications. Everything that us windows form and vb programmers would do
> > was
> > to put all functions relating to a certain area in one form. Like for
> > example
> > I would have an employee timesheet that in a window form would do the
> > adding/updating/deleting etc. in one form. But from my reading of this ASP
> > book adding a timesheet would be put on one page, updating in another and
> > deleting in another. So my question to you guys is this the way I should
> > be
> > design my apps in ASP.net? Should I brake out the different functionality
> > related to one particular task into different aspx pages? How do you guys
> > design your web apps?
> >
> > Thanks,
> >
> > JJ

>
>
>

 
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
class design/ design pattern question Bartholomew Simpson C++ 2 06-12-2007 08:51 PM
Class design/design pattern resources TomTom MCSD 2 10-09-2004 07:38 AM
OO design in servlet design question dave Java 5 07-17-2004 12:58 PM
Xilinx Schematic design vs VHDL code design ZackS VHDL 5 07-09-2004 07:51 AM
Looking for help/resources on Writing a nice detailed design / tech design for vb.net code SpamProof Java 3 12-01-2003 06:06 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