[Mono-aspnet-list] JQuery validation
Federico Delgado
flaker.kapper at gmail.com
Tue Mar 1 00:07:16 EST 2011
Hi,
Is it possible that this jquery plugin is broken and does not work on
Mono's asp .net (working on 2.10.1 now)? I really don't know if it is
supposed to be working.
Simple master-child page renders.
with MS Net:
<div id="container">
<form name="aspnetForm" method="post" action="MyTestWebForm.aspx"
id="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="blah
blah blah" />
</div>
<h1>The Master</h1>
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script>
<h2>InsideMyForm</h2>
</form>
</div>
and this with Mono:
<div id="container">
<form method="post" action="MyTestWebForm.aspx" id="ctl00_ctl01">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="MUUCHH
more viewstate" />
</div>
<h1>The Master</h1>
<script type="text/javascript"
src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.min.js"></script>
<h2>InsideMyForm</h2>
</form>
All the validation structure fails from there (I found this while
porting a site).
Thanks for any tip.
More information about the Mono-aspnet-list
mailing list