[Mono-bugs] [Bug 47868][Maj] New - Width\ Height\ BorderWidth bug
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 25 Aug 2003 02:46:25 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by yaronshkop@hotmail.com.
http://bugzilla.ximian.com/show_bug.cgi?id=47868
--- shadow/47868 2003-08-25 02:46:25.000000000 -0400
+++ shadow/47868.tmp.5903 2003-08-25 02:46:25.000000000 -0400
@@ -0,0 +1,61 @@
+Bug#: 47868
+Product: Mono/Class Libraries
+Version: unspecified
+OS: All
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Major
+Component: System.Web
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: yaronshkop@hotmail.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: Width\ Height\ BorderWidth bug
+
+Please fill in this template when reporting a bug, unless you know what
+you are doing.
+
+Description of Problem:
+Width, Height and BorderWidth can not be changed by the user.
+
+Steps to reproduce the problem:
+1. Open the attached .aspx file with mozilla
+2. Click the button on the web form.
+
+Actual Results:
+An invalid html page is returned by the server.
+
+Expected Results:
+The width, height and borderWidth should change.
+
+How often does this happen?
+Always.
+
+Additional Information:
+The bug occur with IE also but with IE no page is returned.
+The bug is related to each and every one of these elements.
+(Not just one of them).
+
+<HTML>
+ <HEAD>
+ <script language="C#" runat="server">
+ private void BtnTest_Click(object sender, System.EventArgs e)
+ {
+ BtnTest.Width = 40;
+ BtnTest.Height = 40;
+ BtnTest.BorderWidth = 3;
+ }
+ </script>
+ </HEAD>
+ <body MS_POSITIONING="GridLayout">
+ <form id="Form1" method="post" runat="server">
+ <asp:Button id="BtnTest" style="Z-INDEX: 102; LEFT: 304px;
+ POSITION:absolute; TOP: 32px" runat="server"
+ Text="Test" OnClick="BtnTest_Click"></asp:Button>
+ </form>
+ </body>
+ </HTML>