Popular Articles
Last viewed:
- Clustered Index vs. Non-Clustered Index in SQL Server
- Tutorial for Configuring Silverlight 4, Entity Framework and WCF RIA Services in Separate Component Assemblies (DLL’s)
- Windows Server 2003 Configure RRAS (Routing and Remote Access Service) Site to Site VPN
- Fixing Relative Paths in C# ASP.NET When Using Url Rewriting
- C# Download File with Progress Bar
- Change IIS ASP.NET Framework Version Programatically
Recent comments
- jkll
14 hours 43 min ago - Thank You
1 day 14 hours ago - Another approach
3 days 15 hours ago - Issue
4 days 5 hours ago - thanks
4 days 15 hours ago - Calendar date time
4 days 21 hours ago - Nice Explanation
5 days 1 hour ago - ramya
1 week 22 hours ago - thank a lot
1 week 1 day ago - Very useful, but...
1 week 4 days ago

A nice shortcut that isn't well
A nice shortcut that isn't well documented is that you can reference the control directly using the FindControl method with this syntax:
TextBox txtName = (TextBox)Page.Form.FindControl("DetailsView1:txtName");
Nice. Thanks!