Welcome to AspAdvice Sign in | Join | Help

February 2007 - Posts

Understanding the naming container hierarchy of ASP.NET databound controls

Some of the most common questions about ASP.NET data-bound controls are related to the naming container hierarchy. People are using databound controls but don't understand how these are designed to construct their control hierarchy which leads to
Posted by joteke | 1 Comments
Filed under:

Access GridView BoundFields with "field name"

This one was asked at Forums. I quickly created a small helper class which can be extended at will, in case one wants to access also the other field types. However, I wrote class GridViewBoundFieldHelper as follows: public class GridViewBoundFieldHelper
Posted by joteke | 1 Comments
Filed under:

Simple tips: Set Focus to TextBox in GridView (edit mode)

Replied on Forums: If you use TemplateField like < asp:TemplateField > < ItemTemplate > <%# Eval("EmailName") %> </ ItemTemplate > < EditItemTemplate > < asp:TextBox ID= "txtEdit" runat= "server"
Posted by joteke | 2 Comments
Filed under:

Calling for exact list of supported browsers in ASP.NET Ajax 1.0

Bertrand commented to my previous post about the Safari support. That got me thinking, has anyone seen anywhere exact list of browsers ASP.NET Ajax supports? With exact list I mean also versions (Safari 2.x. supported, earlier versions not supported)
Posted by joteke | 1 Comments
Filed under: ,

Replace "Framework" scripts in ASP.NET Ajax

A user reported at newsgroups there being an issue in Safari 1.3.2 with ASP.NET Ajax's release mode scripts. He said that release script wouldn't parse and suspects it relates to the compression (script being on one line) as with debug script
Posted by joteke | 2 Comments
Filed under: ,

If you have debugging issues with VS2005 in Vista

be sure to see following post: http://mvolo.com/blogs/serverside/archive/2006/12/28/Fix-problems-with-Visual-Studio-F5-debugging-of-ASP.NET-applications-on-IIS7-Vista.aspx Share this post: email it! | bookmark it! | digg it! | reddit! | kick it! | live
Posted by joteke | 0 Comments
Filed under:

Always check Page.IsValid (plus validation related thoughts)

This sounds probably obvious, so why am I blogging about this? Well, I attended some discussion on newsgroups where one user had misunderstanding that ASP.NET doing server-side validation automatically would be enough so that you don't need to check
Posted by joteke | 5 Comments
Filed under: