The Bug,
Create an ASP.net application
on a form insert a System.Web.UI.HtmlControls.HtmlTable
inside it insert a field required validator and a textbox, set the
validator's control to validate to the text box.
put a button on the page not inside the table.
on page load set the table's visible property to false
on button click set the tables visible property to true.
You will get the following error when you click the button
"Unable to find script library
'/aspnet_client/system_web/1_1_4322/WebUIValidation.js'. Try placing this
file manually, or reinstall by running 'aspnet_regiis -c'.
you can solve this problem by manually inserting the following code line
into your aspx header.
<script language="javascript" type="text/javascript"
src="/aspnet_client/system_web/1_1_4322/WebUIValidation.js"></script>
I don't understand why Microsoft hasn't released any updates for Visual
Studio.NET in the past 2 years. I have run into a lot of little annoying
bugs that should be fixed.
clintonG - 10 Feb 2005 21:40 GMT
Report bugs to the MSDN Feedback Center [1]

Signature
<%= Clinton Gallagher
METROmilwaukee "Regional Information Services"
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/
[1] http://lab.msdn.microsoft.com/ProductFeedback/Default.aspx
> The Bug,
> Create an ASP.net application
[quoted text clipped - 18 lines]
> Studio.NET in the past 2 years. I have run into a lot of little annoying
> bugs that should be fixed.
Tony - 11 Feb 2005 19:38 GMT
run this in command line at your web folder: aspnet_regiis -c
it will solve your problem, not put javascript on the top of your web page.
Tony
> The Bug,
> Create an ASP.net application
[quoted text clipped - 18 lines]
> Studio.NET in the past 2 years. I have run into a lot of little annoying
> bugs that should be fixed.
Ben J. - 11 Feb 2005 21:45 GMT
Obviously you didn't try recreating the problem.
aspnet_regiis -c will not do anything in this situation.
If you don't stick the script tag into the aspx file, then asp.net will do
it on postback and that won't work in IE.
> run this in command line at your web folder: aspnet_regiis -c
>
[quoted text clipped - 24 lines]
> > Studio.NET in the past 2 years. I have run into a lot of little annoying
> > bugs that should be fixed.
cms123 - 28 Sep 2005 21:45 GMT
I do both of your said. But I still get the error message. I copy the hole
folder /aspnet_client/ to sub virture directory, it still does not work.
> Obviously you didn't try recreating the problem.
>
[quoted text clipped - 31 lines]
> > > Studio.NET in the past 2 years. I have run into a lot of little annoying
> > > bugs that should be fixed.