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
Raja A
NA
26
68.6k
Textbox value cannot get from grid view...
Dec 24 2013 3:24 AM
I cannot get textbox values from gridview...
i am using the following code... I am getting null.... Anyone help me..
foreach (GridViewRow gridRow in GridView1.Rows)
{
Label lbl = (Label)gridRow.FindControl("lblID");
TextBox serviceFee = (TextBox)gridRow.FindControl("txtServiceFee");
TextBox typingFee = (TextBox)gridRow.FindControl("txtTypingFee");
TextBox govermentFee = (TextBox)gridRow.FindControl("txtGovermentFee");
int customerTypeId = Convert.ToInt32(lbl.Text);
string sfee = Convert.ToString(serviceFee.Text);
}
Reply
Answers (
1
)
Input string was not in a correct format.
Comparing Excel Sheet data with SQL Table?