TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
mega sarasvari
NA
39
4.6k
Retrieve text of a dynamically created text box
Nov 16 2016 3:13 AM
Hello to all!
I am making an ASP.net web application where I dynamically create a textbox.
tdNilai = new TableCell();
txtNilaiRusak = new TextBox();
txtNilaiRusak.Attributes["id"] = arIdChild[b].ToString();
txtNilaiRusak.CssClass = "form-control create-number";
tdNilai.Controls.add(txtNilai);
tr.Controls.Add(tdNilai);
tblData.Controls.Add(tr);
Now I also have a save button and I need to find the text of the dynamically created text box so I can save it in a database.
Please help me.
Reply
Answers (
4
)
read values on textbox when I made textbox on aspx.cs
help me in ccoding