Search Results

0
votes

A better way of filling out an excel spreadsheet on a web server in ASP.NET than interop?

Perhaps you could plit the operation into two parts. Gather the information from the web site. Store the results in a database for later workings. Update …
1
vote

How would I go about figuring out the maximum load my server(s) can handle?

Basically you need to mimic the behavior of a user and keep ramping up the number of users being mimiced until the server response is no longer acceptable. There are a variety of tools that …
1
vote

Single ASP.net site with Multiple Instances & web.configs

Use an external source control application and keep rolling out updates as required. It isn't really a good idea to let your live site be updated by support engineers in real time anyway. …
0
votes

How to determine type of dynamically loaded usercontrol?

You could try TypeOf (in c#) Or would uc.GetType() work. …
5
votes

Populate TreeView from DataBase

Not quite. Trees are usually handled best by not loading everything you can at once. So you need to get the root node (or topic) which has no parentIDs. Then add them to the trees root no …
0
votes

Is there an #IF DEBUG for Asp.net markup?

It would be easy enough to roll your own. You might miss some of the cooler non-compiling features of Compilation Constants but you'd definitely have the ability to add markup based on a global pa …
0
votes

iframe height and back button

The web site you got that from doesn't have that problem. Perhaps you need to add an event that reruns the script on refresh or whatever. …
1
vote

Convincing an IT Manager to allow SQL Server instead of Access

Licensing for one. I doubt he wants to have hundreds of Office licenses (one for each end user that connects to the site). SQL has licenses that allows multiple connects at the same time without …