[Mono-bugs] [Bug 45658][Wis] Changed - XSP --> <asp:button> code gets executed but postback loads invalid page

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Tue, 1 Jul 2003 11:50:53 -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 gonzalo@ximian.com.

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

--- shadow/45658	Tue Jul  1 11:22:32 2003
+++ shadow/45658.tmp.10540	Tue Jul  1 11:50:53 2003
@@ -1,13 +1,13 @@
 Bug#: 45658
 Product: Mono/Runtime
 Version: unspecified
 OS: Debian Woody
 OS Details: Bonzai 1.8
-Status: NEW   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Wishlist
 Component: misc
 AssignedTo: gonzalo@ximian.com                            
 ReportedBy: tpsoftware@users.sourceforge.net               
 QAContact: mono-bugs@ximian.com
@@ -274,6 +274,32 @@
         <p align="left">
         </p>
     </form>
 </body>
 </html>
 
+
+------- Additional Comments From gonzalo@ximian.com  2003-07-01 11:50 -------
+Thanks for the sample.
+
+I just tried it and i get a nice page. Then i add an
+object/user/description and click 'Add'.
+
+The object I just added appears on top of the page i get (except the
+status which is empty (may be MySQL driver does not support enums yet?)).
+
+May be it works now after a fix to another bug I just commited to CVS.
+
+
+
+
+Just for the record, the connection string i used:
+
+string connectionString = @"Data
+Source=127.0.0.1;Port=3306;Database=test;COMMAND LOGIN=false";
+
+and the full create table statement:
+
+create table object (id int auto_increment primary key, name varchar
+(50), description text, status enum ('pending',
+'redundant','irrelevant','vague','nonquantifiable', 'attribute',
+'method', 'role'), author varchar (50));