[Mono-bugs] [Bug 73238][Maj] New - Request.QueryString problem

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 2 Mar 2005 17:52:57 -0500 (EST)


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 ronc@palsnet.info.

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

--- shadow/73238	2005-03-02 17:52:57.000000000 -0500
+++ shadow/73238.tmp.7914	2005-03-02 17:52:57.000000000 -0500
@@ -0,0 +1,85 @@
+Bug#: 73238
+Product: Mono: Compilers
+Version: 1.1
+OS: GNU/Linux [Other]
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Major
+Component: Basic
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: ronc@palsnet.info               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Request.QueryString problem
+
+Problem with Request.QueryString not working in current version of vb 
+compiler. Request.QueryString() gives "error BC1501: No overload for 
+method `QueryString' takes `1' arguments" which is a known issue with mbas 
+not properly dealing with the "default property" for a class. But when you 
+are explicit with the property, Request.QueryString.Item(), mbas hangs and 
+leaves xsp without a dll.
+
+Environment:
+Fedora Core 3
+mod_mono-1.0.6-1.novell.9.1
+mono-ikvm-1.1.4-1.novell.9.1
+mono-data-1.1.4-1.novell.9.1
+mono-core-1.1.4-1.novell.9.1
+mono-devel-1.1.4-1.novell.9.1
+mono-winforms-1.1.4-1.novell.9.1
+mono-extras-1.1.4-1.novell.9.1
+mono-basic-1.1.4-1.novell.9.1
+mono-web-1.1.4-1.novell.9.1
+xsp-1.0.6-1.novell.9.1 (installed --nodep because of complaints about 
+neading ver 1.0.5 of above packages)
+Apache 2.0.52
+
+Source Code (test.aspx)
+<%@ LANGUAGE = VBScript %>
+<h2 class="Heading">Contact Us</h2>
+<% if Request.QueryString.Item( "thanks" ) = "yes" then
+        response.write ("<p>Thank You For Contacting Us.</p>")
+else %>
+<p>Please fill in the form below and submit it with your comments or 
+suggestions.</p>
+
+<form action="http://palsnet.info/cgi-bin/formmail.pl" METHOD="POST">
+<input type="hidden" name="recipient" value="ronc@palsnet.info">
+<input type="hidden" name="subject" value="Contact Us Form Input">
+<input type="hidden" value="http://10.100.0.10/NWB/contactus.asp?
+thanks=yes"  name="redirect">
+<table width="100%">
+<tr>
+<td valign="top">Name:</td>
+<td valign="top"><input TYPE=TEXT NAME="name" tabindex="1" 
+maxsize="75"></input></td>
+</tr>
+<tr>
+<td valign="top">Email:</td>
+<td valign="top"><input TYPE=TEXT NAME="email" tabindex="2" 
+maxsize="75"></input></td>
+</tr>
+<tr>
+<td valign="top">Comments:</td>
+<td valign="top"><textarea NAME="COMMENTS" ROWS=7 
+tabindex="3"></textarea></td>
+</tr>
+</table>
+
+<p align="center"><input type="submit" name="Submit" 
+value="Submit">&nbsp;&nbsp;<input type="reset" name="Reset" 
+value="Reset"></p>
+</form>
+<% End If %>
+
+Error:
+
+Cannot find '34144.dll'.
+Description: Error processing request. 
+Error Message: HTTP 404. Cannot find '34144.dll'. 
+
+Have not tested on other platforms but problem happens consistantly.