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
Hardik Patel
NA
378
467.5k
How to Bind RadioButton List with ToolTip in ASP.Net?
Sep 10 2013 3:50 AM
I am using below code but it's only get first tooltip..
try
{
int p;
sq = new SQLDataAccessHelper();
SqlParameter[] param = new SqlParameter[1];
param[0] = new SqlParameter("@facilityid", SqlDbType.Int);
param[0].Value = DBNull.Value;
ds = new DataSet();
ds = sq.ExecuteDataSet("usp_FillFacility", param);
if ((ds != null) && (ds.Tables.Count != 0) && (ds.Tables[0].Rows.Count != 0))
{
for(p=0;p<=ds.Tables[0].Rows.Count;p++)
{
rblFacility.ToolTip = ds.Tables[0].Rows[p]["NoOfSeats"].ToString(); // bind tooltip
}
}
}
catch { }
finally { }
}
Reply
Answers (
1
)
Open closed principle
How to Link Webpage from Flash Image