ASP.NET Request.Form in SQL - HELP PLEASE...!

PHTech

Senior Member
Joined
Aug 21, 2006
Messages
588
OK, done that... But still getting the same result with all the results containing "a"... My code is as follows:

Code:
<asp:QueryStringParameter DefaultValue="a" Name="?" QueryStringField="[COLOR="red"]telfind[/COLOR]" Type="String" />
 

crazy_cat

Well-Known Member
Joined
Aug 21, 2007
Messages
326
OK, done that... But still getting the same result with all the results containing "a"... My code is as follows:

Code:
<asp:QueryStringParameter DefaultValue="a" Name="?" QueryStringField="[COLOR="red"]telfind[/COLOR]" Type="String" />


use
Code:
<asp:FormParameter DefaultValue="a" Name="?" FormField="telfind" Type="String" />
 

PHTech

Senior Member
Joined
Aug 21, 2006
Messages
588
use
Code:
<asp:FormParameter DefaultValue="a" Name="?" FormField="telfind" Type="String" />

All makes sense... Now:

HTML:
Parser Error Message: Type 'System.Web.UI.WebControls.QueryStringParameter' does not have a public property named 'FormField'.

ASP.NET is not my friend... Thanx for all your help so far...!
 

PHTech

Senior Member
Joined
Aug 21, 2006
Messages
588
Hey man...! Thanx alot for your support...! Small typo in my code, but saw it... You're a legend...!!! Thanx alot...!
 
Top