D
Darren
This is a theoretical question, meaning I don't have any specific code
to show.
On a large ASP.NET 1.1 application what is the best way to populate a
forms data fields if you expect a large load? A large load meaning
over 200 users hitting the site 24/7. The goal is to not overload the
web server.
Options are
1. Databinding (doesn't scale well, heavy burdon on server).
2. Using code behind to populate/read the controls. For example:
TextBox1.Text = someDataValue;
....
somdDataValue = TextBox1.Text;
(What would be the performance issues with this)
3. Using <% =someDataValue %> in the aspx page. (Leads to old style ASP
type pages with mixing HTML and code)
4. Other options?
If this has been answered before then please point me in the right
direction.
Thanks!
to show.
On a large ASP.NET 1.1 application what is the best way to populate a
forms data fields if you expect a large load? A large load meaning
over 200 users hitting the site 24/7. The goal is to not overload the
web server.
Options are
1. Databinding (doesn't scale well, heavy burdon on server).
2. Using code behind to populate/read the controls. For example:
TextBox1.Text = someDataValue;
....
somdDataValue = TextBox1.Text;
(What would be the performance issues with this)
3. Using <% =someDataValue %> in the aspx page. (Leads to old style ASP
type pages with mixing HTML and code)
4. Other options?
If this has been answered before then please point me in the right
direction.
Thanks!