VS.NET 2002/2003Discussions about the Visual Studio.NET programming environment, the 2002 (1.0) and 2003 (1.1).
** Please don't post code questions here **
For issues specific to a particular language in .NET, please see the other forum categories.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the VS.NET 2002/2003 section of the Wrox p2p Programmer to Programmer discussion community. This is a community of more than 40,000 computer programmers including Wrox book authors and readers. As a guest, you can read any forum posting. By joining our free Wrox p2p community you can post your own programming questions and respond to other programmers’ questions. Registered users also don't have to see the ads that are displayed to guests. Registration is fast, simple and absolutely free so please, join today!
Join today and post to win prizes! Post more to increase your chances of being Wrox’s top poster of the month.
Hi,
I am dynamically adding templatecolumns(textbox is the template) to datagrid in my .net application. I want to validate the textbox values. So i m associating controltovalidate property of my Validator(RegularExpr) with the added textbox(It name comes to be gridname:_ctl:_ctl0 etc.).
When I add the validators at runtime it works without error. But the validator does not work. When I viewed the source, I found the controlTOvalidate set to gridname__ctl__ctl0. This was actually the ClientId of the textbox but not the UniqueId that I had associated. I am surprised to see the controlTOvalidate property getting changed automatically. Please help me out.