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
Ayu Marzuki
NA
3
1.3k
How to use radiobuttonlist value to show data from database
Aug 26 2014 3:15 AM
Asp.net C#
in my database, i have 4 tables
i have to use RadioButtonList and select one of the items.
- annualleave
- emergencyleave
- medicalleave
- maternityleave
- specialleave
i need to show the table of the data in a link of another page.
please help, im out of ideas.
<asp:RadioButtonList ID="RDB" runat="server"
onselectedindexchanged="RDB_SelectedIndexChanged" Selected="True">
<asp:ListItem Value="al">annual leave</asp:ListItem>
<asp:ListItem Value="el">emergency leave</asp:ListItem>
<asp:ListItem Value="ml">medical leave</asp:ListItem>
<asp:ListItem Value="mal">maternity leave</asp:ListItem>
<asp:ListItem Value="sl">special leave</asp:ListItem>
</asp:RadioButtonList>
Reply
Answers (
3
)
Data List Binding
paging on gridview not working inside update panel ?