Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
I want to retrieve Data in Checkbox1 from Acess Database in C# ....

Using Oledeb Reader ...????

Please tell me How I do this???
Posted
Comments
Richard C Bishop 1-Mar-13 11:32am    
This is not a question. If you searched the web just one time, you would find thousands of examples of this.
Sandeep Mewara 1-Mar-13 12:20pm    
This is not a well framed question! We cannot work out what you are trying to do/ask from the post. Please elaborate and be specific.
Use the "Improve question" link to edit your question and provide better information.
[no name] 1-Mar-13 20:02pm    
HiYour Question is not in clear format kindly improve your question.
If you want to set Check box in your form as per your database at first you have to make a connection then use below code

1 solution

XML
<div class="right-container">
<asp:UpdatePanel ID="udp1" UpdateMode="Conditional" runat="server">
<ContentTemplate>
<asp:CheckBox ID="chkEmail" Text="Display?" TextAlign="left" Checked='<%#Bind("Email_Disp")%>' runat="server"/>
</ContentTemplate>
</asp:UpdatePanel>
</div>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900