Search Results

0
votes

Asp.net - Empty QueryString Parameter

Dreas is correct. Variable "bar" has a value but foo does not. …
0
votes

Programmatically access the <compilation /> section of a web.config?

Try using the ConfigurationManager.GetSection method. …
1
vote

LINQ to SQL, Stored Procedure problem handling an INT32 field that can also be NULL

Try declaring the int variables as nullable. I.e. int? myInt; This way you can check them for null. …
1
vote

ASP .NET and C#

I was a straight VB6 developer when I started transitioning to VB.Net. I'd only done desktop applications - not a single thing in the web world. I started learning ASP.Net (job required it) and d …