Click here to Skip to main content
15,892,737 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Reading Excel Data Pin
Bharathy Sadagopan15-Jan-09 5:08
Bharathy Sadagopan15-Jan-09 5:08 
QuestionASP.NET Dynamic Data Pin
gantww14-Jan-09 5:42
gantww14-Jan-09 5:42 
QuestionDispose a datatable Pin
Member 236391614-Jan-09 4:48
Member 236391614-Jan-09 4:48 
AnswerRe: Dispose a datatable Pin
Aman Bhullar14-Jan-09 4:54
Aman Bhullar14-Jan-09 4:54 
GeneralRe: Dispose a datatable Pin
Christian Graus14-Jan-09 5:12
protectorChristian Graus14-Jan-09 5:12 
QuestionHow to use group by in datatable in c#? Pin
Member 236391614-Jan-09 3:04
Member 236391614-Jan-09 3:04 
QuestionAccess to bin folder denied because of forms authentication Pin
oceanexplorer8214-Jan-09 2:40
oceanexplorer8214-Jan-09 2:40 
Questionradio button binding Pin
cooltoad12314-Jan-09 2:26
cooltoad12314-Jan-09 2:26 
Hi,

I want to bind radio button with the database (MS Access). I have written some code.there are two radio buttons male and female. and one gender coloun in table yes/no (bool) type.
private void rbd()
{
try
{
database = new OleDbConnection(connectionString);
database.Open();
}
catch (OleDbException ex)
{
MessageBox.Show("Error in connection ..." + ex.Message);
}

string sqlStr = "SELECT * FROM city;";

dAdapter = new OleDbDataAdapter(sqlStr, connectionString);

dset = new DataSet();

dAdapter.Fill(dset,"city");

bindingSource = new BindingSource(dset, "gender");

radioButton1.DataBindings.Add("Checked", bindingSource, "gender");
radioButton2.DataBindings.Add("Checked", bindingSource, "gender");

during selection of radio button, i want to show data in grid based on selection??? any suggestions.


}
AnswerRe: radio button binding Pin
_AK_14-Jan-09 2:31
_AK_14-Jan-09 2:31 
GeneralRe: radio button binding Pin
cooltoad12314-Jan-09 2:33
cooltoad12314-Jan-09 2:33 
GeneralRe: radio button binding Pin
_AK_14-Jan-09 2:41
_AK_14-Jan-09 2:41 
QuestionHow can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
Nada Adel14-Jan-09 2:20
Nada Adel14-Jan-09 2:20 
AnswerRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
Christian Graus14-Jan-09 2:21
protectorChristian Graus14-Jan-09 2:21 
AnswerRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
oceanexplorer8214-Jan-09 2:35
oceanexplorer8214-Jan-09 2:35 
AnswerRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
Boro_Bob14-Jan-09 2:55
Boro_Bob14-Jan-09 2:55 
GeneralRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
Nada Adel14-Jan-09 3:27
Nada Adel14-Jan-09 3:27 
GeneralRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
oceanexplorer8214-Jan-09 3:52
oceanexplorer8214-Jan-09 3:52 
GeneralRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
Boro_Bob14-Jan-09 5:12
Boro_Bob14-Jan-09 5:12 
GeneralRe: How can I make my asp.net 2.0 web application display exactly the same in firefox as in IE? Pin
Guffa14-Jan-09 19:57
Guffa14-Jan-09 19:57 
Questionpost data to IFRAME page Pin
vjvjvjvj14-Jan-09 2:03
vjvjvjvj14-Jan-09 2:03 
QuestionHow to cast Session object into a datatable collection.... Pin
Sasmi_Office14-Jan-09 1:28
Sasmi_Office14-Jan-09 1:28 
AnswerRe: How to cast Session object into a datatable collection.... Pin
Abhijit Jana14-Jan-09 1:55
professionalAbhijit Jana14-Jan-09 1:55 
AnswerRe: How to cast Session object into a datatable collection.... Pin
Colin Angus Mackay14-Jan-09 1:55
Colin Angus Mackay14-Jan-09 1:55 
QuestionHow can I add a background image to an Html Table if this table's size changes according to its content? Pin
Nada Adel14-Jan-09 0:34
Nada Adel14-Jan-09 0:34 
AnswerRe: How can I add a background image to an Html Table if this table's size changes according to its content? Pin
Rutvik Dave14-Jan-09 9:42
professionalRutvik Dave14-Jan-09 9:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.