Search Results

3
votes
6answers
406 views

ASP.NET Master Pages

I've just been learning about master pages in ASP.NET 2.0. They sound great, but how well do they work in practice? Does anybody have experience of using them for a large web site? …
1
vote
2answers
796 views

How do I toggle Caps Lock in VB.NET?

Using VB.NET, how do I toggle the state of Caps Lock? …
1
vote
2answers
545 views

How do I get the current state of Caps Lock in VB.NET?

How do I find out whether or not Caps Lock is activated, using VB.NET? This is a follow-up to my …
2
votes

Creating a Word doc in C#.NET

Schmidty, if you want to generate Word documents on a web server you will need a licence for each client (not just the web server). See this section in the first …
2
votes

Why is .NET exception not caught by try/catch block?

Could you be dealing with an exception which doesn't derive from System.Exception? If so see this MSDN article. …
6
votes

Question about memory leak in .NET

Krembo, the recommended way to use SqlConnection and SqlCommand objects is inside a using statement, as in this sample code from …