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
Vishal Pandey
NA
19
23.4k
How I can store data using TextBox at runtime in c#
Apr 20 2006 5:05 AM
I,m creating some textbox at runtime .
int i =0;
if
(datared[
"object type text"
].ToString().ToUpper() ==
"TEXT"
)
{
i++;
TextBox
t1 =
new
TextBox
();
t1.ID =
"t"
+ i;
this
.form1.Controls.Add(t1);
HtmlTableCell
Celltxt =
new
HtmlTableCell
();
this
.form1.Controls.Add(Celltxt);
Celltxt.Controls.Add(t1);
//Celltxt.Controls.Add(ADD);
Rowtxt.Cells.Add(Celltxt);
}
// End Text
i,m not able that how i can add record in database if i create textbox at runtime.
Reply
Answers (
0
)
Database
error while inserting a float number to sql server, pls help!!!