2
votes
What design patterns do you use most often?
Just to add another opinion, here's my list:
Factory
Facade
Adapter
Strategy
…
0
votes
How to click a button on an ASP.NET web page programmatically?
Have you tried fireEvent instead of RaiseEvent?
…
1
vote
ASP.NET and Timers
That would be dangerous as there can be times when the worker process gets recycled or the AppDomain crashes and the Work Item is killed and you may want it to recover what it was doing, it may not …
0
votes
Tips for avoiding big ball of mud with ASP.NET WebForms
Use version control and a folder structure to prevent too many files from all being in the same folder. There is nothing more painful than waiting for Windows Explorer to load something because th …
0
votes
What to learn first?
My own take would be to think about what kinds of work do you want to be doing and what kinds of requirements for those jobs would be helpful to have. For example, do you know about design pattern …
0
votes
Should I pursue ASP.NET WebForms or ASP.NET MVC
I think you should try writing out a simple WebForms application at various levels of using ASP.Net. You could for example write all the UI in HTML and JavaScript and use the code behind to proces …
0
votes
Why do I lose my Session Variable in 5 minutes?
Another idea is to put the machine name into a comment on a page and see if that is changing from page to page just to confirm that there is a changing of the server handling the request.
…
0
votes
Should I learn a .NET Language?
If you plan on programming in a Windows-oriented shop, e.g. WinForms or ASP.Net, then I'd say it makes sense to learn a .Net language. If on the other hand, you really like Linux and other open-so …
0
votes
ASP.NET and Sessions - New Browser Instance versus New Browser Window
I'd wonder if the new IE instance would have the same cookies that happen in case B, where while it is a new window it is using the same process. It is usually in the cookie or in the querystring …
5
votes
An ASP.NET Developers Toolset
Here's a rough list of what I've worked with over the years:
Resharper makes some refactoring much easier and noticeable, e.g. changing around some basic logic or renaming classes.
…
4
votes
How Does ASP.NET associate a request with a session?
In IIS, under ASP.NET's configuration there is a State Management Tab which has a setting called "Cookieless mode" which has the options of:
UseUri
UseCookies
AutoDetect …
0
votes
What is the best way to manage Global variable in asp.net?
I believe the Application object is a built-in way to use global variables where you can store various values in the object as needed.
…
0
votes
C# and .NET Interview Questions
My suggestion would be to review some of the simpler problems that can be given as a test to see how you go from an idea to an implemented optimal solution. FizzBuzz, reversing a string, basic CRU …
1
vote
Forms Authentication timing out when it shouldn’t?
Have you checked against an application pool or worker process recycling causing the problem?
…
1
vote
Checking memory usage of an ASP.NET web site
Could you create a page that listed various performance counters in a password-protected part of the site? That would be my suggestion, along with making sure that somewhere on the page, a machine …
