Hello Everyone,
I have the following situation for which I need your help. In my ASP.NET page I have the following markup:
<asp:SqlDataSource ID="SqlDataSource1"
runat="server"
ConnectionString="<%$ ConnectionStrings:Project %>"
SelectCommand="SELECT [StoreID], [StoreName], [StoreAddress], [State], [ZipCode], [Phone] FROM [tblStoresList] WHERE ZipCode=@Postal">
<selectparameters>
<asp:ControlParameter Name="Postal" ControlID="txtZip" PropertyName="Text" Type="String" />
</selectparameters>
</asp:SqlDataSource>
for which the input parameter comes from a textbox (also with id txtZip) located in the default ...
Go to the complete details ...