I get this message: The name "PINTextBox" does not exist in the current context.
..when I use this code
protected void SqlDataSource9_Selecting(object sender,
SqlDataSourceCommandEventArgs e)
{
e.Command.Parameters["@PIN"].Value = PINTextBox;
}
The code works when I use a value of 3, but I want textbox values to be passed into the @PIN parameter and not just 3
protected void SqlDataSource9_Selecting(object sender,
SqlDataSourceCommandEventArgs e)
{
e.Command.Parameters["@PIN"].Value = 3;
}
PINTextbox code is
<asp:ListView ID="ListView1" runat="server" DataSourceID="SqlDataSource1"
DataKeyNames="ID" GroupItemCount="2">
...
<EditItemTemplate>
...
<asp:TextBox ID="PINTextBox" runat="server" Text='<%# Bind("PIN") %>'/>
...
</EditItemTemplate>
...
</asp:ListView>
Is it giving me this message because the textbox is listed in SqlDataSource1 and not SqlDataSource9?
If so, is there any way for me to get around this still using two different data sources? Or how can I pass the data in PINTextBox to my command and into my select statement (not listed because it appears to work when I have the value 3 in the command)?
Thanks and let me know if you need more code.