Hi,
i have a DataList with a TextBox added by me:
<asp:DataList ID="GradeDataList" runat="server"
DataKeyField="id" DataSourceID="ProjectsObjectDataSource">
<ItemTemplate>
topic:
<asp:Label ID="topicLabel" runat="server" Text='<%#
Eval("topic") %>'></asp:Label><br />
<asp:TextBox ID="GradeTextBox" runat="server"
Text='<%# Grade(Eval("id")) %>' />
</ItemTemplate>
</asp:DataList>
How can I get text from this TextBox?
Thanks in advance,
Etam.First get to the item, then to the textbox:
TextBox myTextBox = myItem.FindControl("GradeTextBox") as TextBox;
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
"etam" <odwrotnie@.gmail.com> wrote in message
news:1180544440.132552.296220@.w5g2000hsg.googlegroups.com...
> Hi,
> i have a DataList with a TextBox added by me:
> <asp:DataList ID="GradeDataList" runat="server"
> DataKeyField="id" DataSourceID="ProjectsObjectDataSource">
> <ItemTemplate>
> topic:
> <asp:Label ID="topicLabel" runat="server" Text='<%#
> Eval("topic") %>'></asp:Label><br />
> <asp:TextBox ID="GradeTextBox" runat="server"
> Text='<%# Grade(Eval("id")) %>' />
> </ItemTemplate>
> </asp:DataList>
> How can I get text from this TextBox?
> Thanks in advance,
> Etam.
>
Use the .items collection of the datalist to obtain a reference to
your textbox by name.
Once you have the reference, set the value using the textbox's .Text
property.
ie
myDatalist.items("mytexbox").Text="My new value"
On 30 Maj, 20:55, "Eliyahu Goldin"
<REMOVEALLCAPITALSeEgGoldD...@.mMvVpPsS.org> wrote:
> First get to the item, then to the textbox:
> TextBox myTextBox = myItem.FindControl("GradeTextBox") as TextBox;
TextBox tb = (TextBox)GradeDataList.FindControl("GradeTextBox");
Then tb == null :/.
But still it is strange... Beacause My GradeDataList has many
GradeTextBoxes. Am I right?
Exactly. This will work for variable of any value type, including enums.
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
C++ to C# Converter: converts C++ to C#
Instant C++: converts C# or VB to C++/CLI
"etam" wrote:
> Hi,
> i have a DataList with a TextBox added by me:
> <asp:DataList ID="GradeDataList" runat="server"
> DataKeyField="id" DataSourceID="ProjectsObjectDataSource">
> <ItemTemplate>
> topic:
> <asp:Label ID="topicLabel" runat="server" Text='<%#
> Eval("topic") %>'></asp:Label><br />
> <asp:TextBox ID="GradeTextBox" runat="server"
> Text='<%# Grade(Eval("id")) %>' />
> </ItemTemplate>
> </asp:DataList>
> How can I get text from this TextBox?
> Thanks in advance,
> Etam.
>
Sorry - this made it into the wrong thread...
--
David Anton
www.tangiblesoftwaresolutions.com
Instant C#: VB to C# converter
Instant VB: C# to VB converter
C++ to C# Converter: converts C++ to C#
Instant C++: converts C# or VB to C++/CLI
"David Anton" wrote:
> Exactly. This will work for variable of any value type, including enums.
> --
> David Anton
> www.tangiblesoftwaresolutions.com
> Instant C#: VB to C# converter
> Instant VB: C# to VB converter
> C++ to C# Converter: converts C++ to C#
> Instant C++: converts C# or VB to C++/CLI
>
> "etam" wrote:
>
You need first get to the item, something like
TextBox tb = (TextBox)GradeDataList.Items[i].FindControl("GradeTextBox");
Eliyahu Goldin,
Software Developer & Consultant
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
"etam" <odwrotnie@.gmail.com> wrote in message
news:1180549263.635323.268780@.q66g2000hsg.googlegroups.com...
> On 30 Maj, 20:55, "Eliyahu Goldin"
> <REMOVEALLCAPITALSeEgGoldD...@.mMvVpPsS.org> wrote:
> TextBox tb = (TextBox)GradeDataList.FindControl("GradeTextBox");
> Then tb == null :/.
> But still it is strange... Beacause My GradeDataList has many
> GradeTextBoxes. Am I right?
>
Monday, March 26, 2012
Text from TextBox in DataList
Labels:
asp,
datakeyfield,
datalist,
gradedatalist,
meltaspdatalist,
net,
runat,
server,
text,
textbox
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment