Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
You would need to use TextBox.Text to get a string value from the TextBox. – sq33G Nov 15 '11 at 19:26

2 Answers

You need to know which row's TextBox we're talking about.

//myRow contains the row that was just selected
TextBox txtPin = (TextBox)myRow.FindControl ("PINTextBox");
e.Command.Parameters["@PIN"].Value = txtPin.Text;
share|improve this answer
I just tried your code and received the following: Compiler Error Message: CS0103: The name 'myrow' does not exist in the current context....Line 69: TextBox txtPin = (TextBox)myrow.FindControl("PINTextBox");...I'm still looking into this method but so far no luck. – user1001411 Nov 15 '11 at 20:16
1  
um, I didn't wave a magic wand. You'll need to make a field called myRow or something like it to hold the selected ListView row, and populate it on some event. – sq33G Nov 15 '11 at 20:20
Thanks for the extra info (minus sarcasm), I'm new at this :) – user1001411 Nov 15 '11 at 21:34
:) no harm intended – sq33G Nov 15 '11 at 21:47

You can find the label/textbox using the listview's selectedindex and then extract the text as shown below. (Not sure why you would like to use the textbox but you can use the label; the textbox code is commented). You can replace "PINLabel" below with the actual ID for your label in ItemTemplate. This code will be invoked the first time you load the page, hence you may need to take care of putting a condition for postback.

    protected void SqlDataSource9_Selecting(object sender, SqlDataSourceSelectingEventArgs e)
    {
        //TextBox txtPIN = ListView1.Items[ListView1.SelectedIndex].FindControl("PINTextBox") as TextBox;
        //e.Command.Parameters["@PIN"].Value = txtPIN.Text;
        Label lblPIN = ListView1.Items[ListView1.SelectedIndex].FindControl("PINLabel") as Label;
        e.Command.Parameters["@PIN"].Value = lblPIN.Text;
    }

You need to ensure that this control is present in the SelectedItemTemplate as well like this:

        <asp:ListView ID="ListView1" runat="server" DataSourceID="SqlDataSource1" 
            DataKeyNames="ID">
            ......
            <EditItemTemplate>
                <tr>
                 ......
                <td><asp:TextBox ID="PINTextBox" runat="server" Text='<%# Bind("PIN") %>' /></td>
                </tr>
            </EditItemTemplate>
            ......
            <ItemTemplate>
                <tr>
                ......
                    <td><asp:Label ID="PINLabel" runat="server" Text='<%# Eval("PIN") %>' /></td>
                ......
                </tr>
            </ItemTemplate>
            ......
            <SelectedItemTemplate>
                <tr>
                ......
                    <td><asp:Label ID="PINLabel" runat="server" Text='<%# Eval("PIN") %>' /></td>
                ......
                </tr>
            </SelectedItemTemplate>
        </asp:ListView>

Old Answer (IGNORE):

Use ".Text" for PINTextBox! protected void SqlDataSource9_Selecting(object sender, SqlDataSourceCommandEventArgs e) { e.Command.Parameters["@PIN"].Value = PINTextBox.Text; }

share|improve this answer
Tried it and I received the same error: Compiler Error Message: CS0103: The name 'PINTextBox' does not exist in the current context....Line 68: e.Command.Parameters["@PIN"].Value = PINTextBox.Text;..... Will try myrow mentioned above... – user1001411 Nov 15 '11 at 19:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.