[Mono-dev] A Bug in mono-1.1.9
Gonzalo Paniagua Javier
gonzalo at ximian.com
Sat Sep 10 15:10:46 EDT 2005
On Sun, 2005-09-11 at 01:51 +0800, David wrote:
> Afer I update my mono to mono-1.1.9, I found a bug in my Asp.Net Web.
> Sample like this:
> .aspx file:
> <input runat="server" id="reply" onserverclick="OnButtonClick" vaule="Reply">
> .aspx.cs file
> protected void OnButtonClick(object sender, System.EventArgs e){
> // my code here
> ....................
> }
This works as expected:
---------------------------
%@ Page %>
<html>
<script runat="server">
void OnButtonClick (object o, EventArgs args)
{
Console.WriteLine ("called");
}
</script>
<body>
<form runat="server">
<input runat="server" id="reply" type="submit"
onserverclick="OnButtonClick" value="Reply">
</form>
</body>
</html>
------------
If you have a complete test case the fails, please, post it.
-Gonzalo
More information about the Mono-devel-list
mailing list