Published May 6th, 2008
in ASP.NET and HTML.
Problem
You know it’s possible to have controls with the same name on one page. In this case Request.Form[”txtSomeText”] returns the values form all 5 textboxes comma separted. (For example: text1,text2, text3.text4, text5).
Example:
…..
<input type=”text” name=”txtSomeText” />
<input type=”text” name=”txtSomeText” />
<input type=”text” name=”txtSomeText” />
<input type=”text” name=”txtSomeText” />
<input type=”text” name=”txtSomeText” />
…….
The question iin this case is “How to […]
Published March 15th, 2007
in ASP.NET.
Gaia Ajax Widgets is another framework (except ASP.NET AJAX extensions framework) built on top of the native ASP.NET server controls.
Pros:
Easy to use
Easy to extend
Lightweighted
No JavaScript required - you don’t have to write JavaScript at all
Gaia is FREE
Samples
Download
ajax, asp.net widgets
Published February 7th, 2007
in ASP.NET and Javascript.
ASP.NET 2.0 AJAX Extensions 1.0 framework was released some days ago. You can use it for developing and running AJAX-style applications. Download the framework and the documentation or just read more about ASP.NET AJAX.
ASP.NET AJAX Control Toolkit was also released along with the framework. It is a shared-source community project consisting of samples and components […]
Published October 31st, 2006
in ASP.NET.
If you receive this error in the error log of your project here is its description and solution.
Prerequisites: Your application must have custom login functionality based on Forms Authentication method implemented. Also built-in functionality for Roles, Users and Membership must be used.
Problem: The visible issue is that the user cannot login to the application […]
Published October 29th, 2006
in ASP.NET.
Recently I experienced a strange problem with custom login functionality based on Forms Authentication method. The visible issue is that sometimes I login successfully to my application, sometimes - I can’t. In all the cases the same login details are used. When I reviewed the Event Log I found the following error:
Event viewer error:
Event code: […]
Recent Comments