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
ajlkirin
NA
1
0
create server event
Feb 16 2004 8:25 AM
I am trying to establish a server event to a TextBox at runtime. The TextBox is also established at runtime as follows: TextBox txtCntl = new TextBox(); txtCntl.ID = "txtTest"; txtCntl.Text = dr1["Fcst_Forecast_Wgt"].ToString(); detailrow.Cells[7].Controls.Add(txtCntl); txtCntl.TextChanged += new System.EventHandler(this.changeForecastWgt); ... private void changeForecastWgt(object sender, System.EventArgs e) { lblCustomerDesc.Text = "Testing..."; } I will eventually be adding other logic to the event, but I can not get this to work yet... Thanks Andy
Reply
Answers (
1
)
To build dynamic string for stored procedure in vb.net
Remote Server