[Mono-bugs] [Bug 35670][Nor] New - problems with xsp-2.0/server/test/htmlinputtext.aspx

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
16 Dec 2002 16:05:04 -0000


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 henrik.ingo@tieturi.fi.

http://bugzilla.ximian.com/show_bug.cgi?id=35670

--- shadow/35670	Mon Dec 16 11:05:04 2002
+++ shadow/35670.tmp.4991	Mon Dec 16 11:05:04 2002
@@ -0,0 +1,96 @@
+Bug#: 35670
+Product: Mono/Class Libraries
+Version: unspecified
+OS: Red Hat 7.3
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: System.Web
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: henrik.ingo@tieturi.fi               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: problems with xsp-2.0/server/test/htmlinputtext.aspx
+
+Hi. Having all of my plans for today canceled and nothing to do, I decided 
+to give mono 0.17 on linux a try. I asked our .net-gurus to write me some 
+helloworlds, and when the word spread they all gathered around my desk. We 
+where all very impressed by your work!
+
+Some of the smoketests for asp.net (wich we mostly played around with) 
+didn't work as expected tough. I'll file a couple of bugs for some of our 
+findings for your reading pleasure.
+
+So let's start with the first one:
+
+
+Description of Problem:
+When testing the page xsp-2.0/server/test/htmlinputtext.aspx
+The default value "Your name goes here" is lost from the textfield. In the 
+browser the field is just empty.
+The password-field on the same seems to work, however.
+
+Steps to reproduce the problem:
+1. install mono 0.17, download and compile xsp 0.2
+2. cd to xsp-2.0/server
+3. mono server.exe
+4. point browser to localhost:8080/htmlinputtext.aspx
+
+Actual Results:
+The first field on the page is empty
+
+Expected Results:
+but it should contain the message "Your name goes here"
+
+How often does this happen? 
+Always
+
+
+Additional Information:
+
+
+The aspx source:
+
+<%@ Page Language="C#" %>
+<html>
+<title>HtmlInputText: text and password</title>
+<body>
+<form method=post runat="server">
+<input type="text" id="asText" maxlength=40 size=40 value="Your name goes 
+here" runat="server"/>
+<br>
+<input type="password" id="asPassword" maxlength=8 size=8 value="Your name 
+goes here" runat="server"/>
+</form>
+</body>
+</html>
+
+
+
+The html that is sent to the browser:
+
+<html>
+<title>HtmlInputText: text and password</title>
+<body>
+<form name="_control12" method="post" id="_control12">
+	<input type="hidden" name="__VIEWSTATE" 
+value="cDx0PDtMPHM8X2N0cmxfMD47czxfY3RybF8xPjtzPF9jdHJsXzI+O3M8X2N0cmxfMz47
+czxfY3RybF80PjtzPF9jdHJsXzU+O3M8X2N0cmxfNj47czxfY3RybF83PjtzPF9jdHJsXzg+O3M
+8X2NvbnRyb2wxMj47czxfY3RybF85PjtzPF9jdHJsXzEwPjtzPF9jdHJsXzExPjtzPF9jdHJsXz
+EyPjtzPF9jdHJsXzEzPj47TDx0PDs7Pjt0PDs7Pjt0PDs7Pjt0PDs7Pjt0PDs7Pjt0PDs7Pjt0P
+Ds7Pjt0PDs7Pjt0PDs7Pjt0PDtMPHM8X2N0cmxfMD47czxhc1RleHQ+O3M8X2N0cmxfMT47czxf
+Y3RybF8yPjtzPF9jdHJsXzM+O3M8YXNQYXNzd29yZD47czxfY3RybF80Pj47TDx0PDs7Pjt0PDs
+7Pjt0PDs7Pjt0PDs7Pjt0PDs7Pjt0PDs7Pjt0PDs7Pj4+O3Q8Ozs+O3Q8Ozs+O3Q8Ozs+O3Q8Oz
+s+O3Q8Ozs+Pj47Pg==" />
+	
+<input name="asText" id="asText" type="text" size="40" maxlength="40" />
+<br>
+<input name="asPassword" id="asPassword" type="password" value="Your name 
+goes here" size="8" maxlength="8" />
+</form>
+</body>
+</html>