No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Are you trying to populate a dropdown menu from a database? [url]http://www.youtube.com/watch?v=sOE_hA2NLBI[/url]
You have a type set incorrectly it will say somewhere in your error message [CODE]Must declare the scalar variable <@Field>[/CODE] For example [CODE] <asp:QueryStringParameter Name="pID" QueryStringField="pID" Type="Int32" />[/CODE] could need to be changed to [CODE] <asp:QueryStringParameter Name="pID" QueryStringField="pID" />[/CODE]
You could change the form tag that is in your masterpage to a normal html form such as [CODE]<form method="post" action="somepage.aspx">[/CODE]
you need to to use a convert function [url]http://msdn.microsoft.com/en-us/library/ms187928.aspx[/url]
The End.
Citation