Ajax Modal Popup and the Field Validators
In one of my web application projects I wanted to create some modal popups that would collect user input and validate. I ran into an error using required field validators and regular expression...
View ArticleAjax Modal Popup with Transparency
Add the below section to your CSS file and set your BackgroundCssClass = “modalBackground” You will get a very nice looking black transparency around the modal popup panel similar to applications such...
View ArticleError: Execution of User Code in the .NET Framework
The Problem: Execution of user code in the .NET Framework is disabled. Enable “clr enabled” configuration option The Solution: EXEC sp_configure ‘show advanced options’ , ‘1’; reconfigure; EXEC...
View ArticleAn error occurred in the Microsoft .NET Framework while trying to load assembly
I received this error after deployment of a new Sql CLR function: An error occurred in the Microsoft .NET Framework while trying to load assembly id 65545. The server may be running out of resources,...
View ArticleDynamically Populating Dropdownlists
Had to do this today, took a few minutes of google searching In order to dynamically populate a drop down list use the following logic: SqlConnection connection = new SqlConnection(connectionString);...
View Article