<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>ASP.NET AJAX UI</title><link>http://forums.asp.net/1008.aspx</link><description>Here you can discuss UI-related issues with AJAX such as controls and client-side functionality including Silverlight controls for ASP.NET</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1804774.aspx</link><pubDate>Mon, 16 Jul 2007 03:48:54 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1804774</guid><dc:creator>chetan.sarode</dc:creator><author>chetan.sarode</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1804774.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1804774</wfw:commentRss><description>&lt;p&gt;&lt;a href="http://blogs.msdn.com/mattgi/archive/2007/01/23/asp-net-ajax-validators.aspx"&gt;http://blogs.msdn.com/mattgi/archive/2007/01/23/asp-net-ajax-validators.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1804029.aspx</link><pubDate>Sun, 15 Jul 2007 04:59:21 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1804029</guid><dc:creator>poortl9109</dc:creator><author>poortl9109</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1804029.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1804029</wfw:commentRss><description>&lt;p&gt;It seems that this is not causing problems with the required validator but I need the range validator to validate the type.&amp;nbsp;&lt;/p&gt;&lt;p&gt;I also have a regular expressions validator that fails similarly to the range validator.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1804027.aspx</link><pubDate>Sun, 15 Jul 2007 04:56:06 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1804027</guid><dc:creator>poortl9109</dc:creator><author>poortl9109</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1804027.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1804027</wfw:commentRss><description>&lt;p&gt;Thanks for the reply. That didn&amp;#39;t seem to work and I&amp;#39;m wondering if the problem is somewhere else. I have a very simple sample of one page and one user control that I am working on to try and solve this problem. The main page uses the LoadControl function to load a usercontrol which contains the validation. The main page has a ScriptManager object and the usercontrol has a UpdatePanel object but the validation controls are not inside of the update panel. What happens is that the client side validation works but when the page posts back with valid data it returns invalid. It also is invalid on the server side after the postback. I also tried and made this example even simpler by not using the placeholder and loadcontrol function but just placing the usercontrol on the page and that has the same errors. I&amp;#39;ve spent several hours searching on the internet for a solution and I turn up with nothing. This seems like a common situation so it makes me think I must be doing something wrong but I&amp;#39;m really baffled at this point. &lt;br /&gt; &lt;/p&gt;&lt;p&gt;Here is the code:&lt;/p&gt;&lt;p&gt;&amp;nbsp;default2.aspx:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;lt;%@ Page Language=&amp;quot;C#&amp;quot; %&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; UserControl ctl = (UserControl)LoadControl(&amp;quot;WebUserControl2.ascx&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ctl.ID = &amp;quot;someid&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PlaceHolder1.Controls.Add(ctl);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot; &amp;gt;&lt;br /&gt;&amp;lt;head runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;title&amp;gt;Untitled Page&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;form id=&amp;quot;form1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ScriptManager ID=&amp;quot;ScriptManager1&amp;quot; runat=&amp;quot;server&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:PlaceHolder ID=&amp;quot;PlaceHolder1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:PlaceHolder&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/form&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;br /&gt;WebUserControl2.ascx:&lt;/p&gt;&lt;p&gt;&amp;lt;%@ Control Language=&amp;quot;C#&amp;quot; ClassName=&amp;quot;WebUserControl2&amp;quot; %&amp;gt;&lt;br /&gt;&amp;lt;%@ Import Namespace=&amp;quot;System.Web.Configuration&amp;quot; %&amp;gt;&lt;br /&gt;&amp;lt;script runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void Page_Load(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Configuration configuration = WebConfigurationManager.OpenWebConfiguration(&amp;quot;/AJAXEnabledWebSite1&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; // Get the section.&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; PagesSection pagesSection = (PagesSection)configuration.GetSection(&amp;quot;system.web/pages&amp;quot;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pagesSection.TagMapping.Add(new System.Web.Configuration.TagMapInfo(&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;quot;System.Web.UI.WebControls.RangeValidator&amp;quot;, &amp;quot;Sample.Web.UI.Compatibility.RangeValidator, Validators, Version=1.0.0.0&amp;quot;));&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sample.Web.UI.Compatibility.RangeValidator range = new Sample.Web.UI.Compatibility.RangeValidator();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; range.Type = ValidationDataType.Double;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; range.ControlToValidate = TextBox1.ID;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; range.ErrorMessage = &amp;quot;RangeValidator&amp;quot;;&lt;br /&gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Controls.Add(range);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Label1.Text = DropDownList1.SelectedItem.Text;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;&amp;lt;/script&amp;gt;&lt;br /&gt;&amp;lt;asp:DropDownList ID=&amp;quot;DropDownList1&amp;quot; runat=&amp;quot;server&amp;quot; AutoPostBack=&amp;quot;True&amp;quot; OnSelectedIndexChanged=&amp;quot;DropDownList1_SelectedIndexChanged&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ListItem&amp;gt;first&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ListItem&amp;gt;second&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ListItem&amp;gt;3&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ListItem&amp;gt;4&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:ListItem&amp;gt;5&amp;lt;/asp:ListItem&amp;gt;&lt;br /&gt;&amp;lt;/asp:DropDownList&amp;gt;&amp;lt;asp:UpdatePanel ID=&amp;quot;UpdatePanel1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ContentTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:Label ID=&amp;quot;Label1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Label&amp;quot;&amp;gt;&amp;lt;/asp:Label&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ContentTemplate&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;Triggers&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;asp:AsyncPostBackTrigger ControlID=&amp;quot;DropDownList1&amp;quot; EventName=&amp;quot;SelectedIndexChanged&amp;quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/Triggers&amp;gt;&lt;br /&gt;&amp;lt;/asp:UpdatePanel&amp;gt;&lt;br /&gt;&amp;lt;asp:Button ID=&amp;quot;Button1&amp;quot; runat=&amp;quot;server&amp;quot; Text=&amp;quot;Button&amp;quot; /&amp;gt;&lt;br /&gt;&amp;lt;asp:TextBox ID=&amp;quot;TextBox1&amp;quot; runat=&amp;quot;server&amp;quot;&amp;gt;&amp;lt;/asp:TextBox&amp;gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1804005.aspx</link><pubDate>Sun, 15 Jul 2007 03:47:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1804005</guid><dc:creator>mbarlowm</dc:creator><author>mbarlowm</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1804005.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1804005</wfw:commentRss><description>&lt;p&gt;Yeah, my code used to be:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;font color="#0000ff" size="2"&gt;Dim&lt;/font&gt;&lt;font size="2"&gt; reqValidator &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;As&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;New&lt;/font&gt;&lt;font size="2"&gt; RequiredFieldValidator&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;I swtiched to:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;font color="#0000ff" size="2"&gt;Dim&lt;/font&gt;&lt;font size="2"&gt; reqValidator &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;As&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;New&lt;/font&gt;&lt;font size="2"&gt; &lt;font size="2"&gt;Sample.Web.UI.Compatibility.&lt;/font&gt;RequiredFieldValidator&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Then, because I had several ont he page, I just imported the namespace on that page and it used the new namespace for all like this:&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;Imports &lt;font size="2"&gt;Sample.Web.UI.Compatibility&lt;br /&gt;...&lt;br /&gt;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;font color="#0000ff" size="2"&gt;Dim&lt;/font&gt;&lt;font size="2"&gt; reqValidator &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;As&lt;/font&gt;&lt;font size="2"&gt; &lt;/font&gt;&lt;font color="#0000ff" size="2"&gt;New&lt;/font&gt;&lt;font size="2"&gt; RequiredFieldValidator&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;&lt;font size="2"&gt;&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;font size="2"&gt;It could not have been easier, really.&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1804001.aspx</link><pubDate>Sun, 15 Jul 2007 03:25:33 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1804001</guid><dc:creator>poortl9109</dc:creator><author>poortl9109</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1804001.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1804001</wfw:commentRss><description>&lt;p&gt;&lt;BLOCKQUOTE&gt;&lt;div&gt;&lt;img src="/Themes/fan/images/icon-quote.gif"&gt; &lt;strong&gt;mbarlowm:&lt;/strong&gt;&lt;/div&gt;&lt;div&gt;&lt;/p&gt;&lt;p&gt;Maybe tagMappings had no effect because I was not adding them as tags?&amp;nbsp; I am adding them in code.&amp;nbsp; In code then, I created the right objects from the Compatibility namespace.&amp;nbsp; Works great now, thought I wish&amp;nbsp;it could be in Web.Config instead of in code.&amp;nbsp; I did not have to disable clientside validation.&lt;/p&gt;&lt;p&gt;&lt;/div&gt;&lt;/BLOCKQUOTE&gt;&lt;/p&gt;&lt;p&gt;Would you mind posting your code please? I am having the same problem.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1734059.aspx</link><pubDate>Thu, 31 May 2007 20:05:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1734059</guid><dc:creator>mbarlowm</dc:creator><author>mbarlowm</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1734059.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1734059</wfw:commentRss><description>&lt;p&gt;Maybe tagMappings had no effect because I was not adding them as tags?&amp;nbsp; I am adding them in code.&amp;nbsp; In code then, I created the right objects from the Compatibility namespace.&amp;nbsp; Works great now, thought I wish&amp;nbsp;it could be in Web.Config instead of in code.&amp;nbsp; I did not have to disable clientside validation.&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1732939.aspx</link><pubDate>Thu, 31 May 2007 03:41:45 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1732939</guid><dc:creator>chetan.sarode</dc:creator><author>chetan.sarode</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1732939.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1732939</wfw:commentRss><description>&lt;p&gt;Have you checked those link what I have provided...&lt;/p&gt;
&lt;p&gt;Got any solution form that ?&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1732500.aspx</link><pubDate>Wed, 30 May 2007 19:56:40 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1732500</guid><dc:creator>Neoman</dc:creator><author>Neoman</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1732500.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1732500</wfw:commentRss><description>&lt;p&gt;From &lt;/p&gt;&lt;p&gt;&lt;a href="http://ajax.asp.net/docs/overview/UpdatePanelOverview.aspx"&gt;http://ajax.asp.net/docs/overview/UpdatePanelOverview.aspx&amp;nbsp;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;quot;To make the validators compatible with an &lt;a href="http://ajax.asp.net/docs/mref/T_System_Web_UI_UpdatePanel.aspx"&gt;UpdatePanel&lt;/a&gt; control, set the &lt;a href="http://msdn2.microsoft.com/en-us/7t054e90"&gt;EnableClientScript&lt;/a&gt; property of the validators to &lt;span class="keyword"&gt;false&lt;/span&gt;.
This disables the client script that would ordinarily be used to
perform validation in the browser. As a result, during an asynchronous
postback, the validators perform validation on the server. However,
because only the content of the &lt;span class="nolink"&gt;UpdatePanel&lt;/span&gt; is refreshed, the validators can provide the kind of immediate feedback that is ordinarily provided by client script. &amp;quot;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1732428.aspx</link><pubDate>Wed, 30 May 2007 19:14:55 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1732428</guid><dc:creator>mbarlowm</dc:creator><author>mbarlowm</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1732428.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1732428</wfw:commentRss><description>&lt;p&gt;I have run up agaist this problem, but the tagMappings had no effect.&amp;nbsp; What&amp;#39;s different about my project is that I&amp;#39;m using a deployment project to compile my User Controls (which contain the Update Panel).&amp;nbsp; I have the tag mappings in the Web.config of the compiled project, and of the project that references it.&amp;nbsp; There was no effect.&amp;nbsp; After the first AJAX postback, the validators in the UpdatePanel will not appear when appropriate violations are made.&amp;nbsp; I have no ideas about what to try next.&amp;nbsp; Does anyone have any ideas?&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1686158.aspx</link><pubDate>Sat, 28 Apr 2007 03:12:19 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1686158</guid><dc:creator>chetan.sarode</dc:creator><author>chetan.sarode</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1686158.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1686158</wfw:commentRss><description>&lt;p&gt;Basically in final version version of ajax Validatos are not compatable with AJAX&lt;/p&gt;
&lt;p&gt;&lt;a href="http://ajax.asp.net/docs/overview/UpdatePanelOverview.aspx"&gt;http://ajax.asp.net/docs/overview/UpdatePanelOverview.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1686157.aspx</link><pubDate>Sat, 28 Apr 2007 03:09:29 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1686157</guid><dc:creator>chetan.sarode</dc:creator><author>chetan.sarode</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1686157.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1686157</wfw:commentRss><description>&lt;p&gt;Check this link&lt;/p&gt;
&lt;p&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2007/01/25/links-to-asp-net-ajax-1-0-resources-and-answers-to-some-common-questions.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2007/01/25/links-to-asp-net-ajax-1-0-resources-and-answers-to-some-common-questions.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1686069.aspx</link><pubDate>Fri, 27 Apr 2007 23:06:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1686069</guid><dc:creator>newbie06</dc:creator><author>newbie06</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1686069.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1686069</wfw:commentRss><description>&lt;p&gt;Here is a great link with a temp solution to your problem:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://weblogs.asp.net/scottgu/archive/2007/01/25/links-to-asp-net-ajax-1-0-resources-and-answers-to-some-common-questions.aspx"&gt;http://weblogs.asp.net/scottgu/archive/2007/01/25/links-to-asp-net-ajax-1-0-resources-and-answers-to-some-common-questions.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1686049.aspx</link><pubDate>Fri, 27 Apr 2007 22:21:14 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1686049</guid><dc:creator>newbie06</dc:creator><author>newbie06</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1686049.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1686049</wfw:commentRss><description>&lt;p&gt;I have the following validators in my UpdatePanel: I set the UpdateMode property to Conditional.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;font color=#a31515 size=2&gt;RegularExpressionValidator&lt;/font&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;font color=#0000ff size=2&gt;CompareValidatorEmail&lt;/font&gt;&lt;/p&gt;&lt;font color=#a31515 size=2&gt;
&lt;p&gt;RequiredFieldValidator&lt;/p&gt;
&lt;p&gt;&amp;nbsp;The first time the page is loaded everthing works fine. When I hit the clear button to clear all Textboxes and then try reentering text in the Textboxes the field validators are not firing anymore.&lt;/p&gt;
&lt;p&gt;Any fixes?&lt;/p&gt;
&lt;p&gt;newbie&lt;/p&gt;&lt;/font&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1646873.aspx</link><pubDate>Mon, 02 Apr 2007 01:40:09 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1646873</guid><dc:creator>arrdee</dc:creator><author>arrdee</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1646873.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1646873</wfw:commentRss><description>&lt;p&gt;On further testing my issue is specifically web part orientated. So the fix that AjaxButter linked to corrects the issue of validators within update panels, but I still experience problems with web parts, specifically those that contain validators where the web part zone is within an update panel. My problem is solved if I put the update panel within the web part zone, and the user control within that, but that means that there has the be either a seperate update panel for every web part, or one large web part with lots of user controls within it that are not distinguished as seperate.&lt;/p&gt;&lt;p&gt;For an example try this scenario.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Add wpm to a page&lt;/li&gt;&lt;li&gt;add an update panel with a web part zone inside&lt;br /&gt;&lt;/li&gt;&lt;li&gt;within the wpz add a user control consisting of a text box, required validator control and a button with a server linked event that updates the current time in a label or something&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;On 1st click of the btn, the label is not refreshed and the validator event fires as expected&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Now add text to the text box, the outcome is as expected, validator not fired, label refreshed&lt;/li&gt;&lt;li&gt;Now remove the text. On button click, the validator is fired, &lt;span style="font-weight:bold;"&gt;but&lt;/span&gt; the button event is also fired and the label is refreshed...&lt;/li&gt;&lt;/ul&gt;I guess my fix for the moment is to add a seperate update panel within the web part zone for every control I add. Not ideal though&lt;br /&gt;</description></item><item><title>Re: Probem with hidden validators inside UpdatePanel</title><link>http://forums.asp.net/thread/1644119.aspx</link><pubDate>Fri, 30 Mar 2007 06:12:05 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:1644119</guid><dc:creator>WishStar99</dc:creator><author>WishStar99</author><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/1644119.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=1008&amp;PostID=1644119</wfw:commentRss><description>What kind of validators are you guys talking about? How about some sample here? I have validators inside an updatepanel and they work fine.</description></item></channel></rss>