Click here to Skip to main content
15,913,254 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: asp.net targetting 32-bit processor on a 64-bit build machine? Pin
Not Active27-Oct-09 6:10
mentorNot Active27-Oct-09 6:10 
AnswerRe: asp.net targetting 32-bit processor on a 64-bit build machine? Pin
Covean27-Oct-09 6:11
Covean27-Oct-09 6:11 
QuestionEmail, ASP.NET amd authentication Pin
OriginalGriff27-Oct-09 4:50
mveOriginalGriff27-Oct-09 4:50 
AnswerRe: Email, ASP.NET amd authentication Pin
sashidhar27-Oct-09 5:48
sashidhar27-Oct-09 5:48 
GeneralRe: Email, ASP.NET amd authentication Pin
OriginalGriff27-Oct-09 6:11
mveOriginalGriff27-Oct-09 6:11 
GeneralRe: Email, ASP.NET amd authentication Pin
Abhishek Sur27-Oct-09 7:56
professionalAbhishek Sur27-Oct-09 7:56 
GeneralRe: Email, ASP.NET amd authentication Pin
OriginalGriff27-Oct-09 11:17
mveOriginalGriff27-Oct-09 11:17 
QuestionProblem with Connection ? Pin
Purish Dwivedi27-Oct-09 4:48
Purish Dwivedi27-Oct-09 4:48 
I am loading data from Access table into GridView, but it shows nothing in my Web Application after executing.
What is wrong int this code?Plz help.

This is my connection code.


private void Binding()
{
// create the connection
OleDbConnection con = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=F:/GmoteDeviceControl/App_Data/DeviceCtrl.mdb;User Id=admin;Password=;");


// Open the connection
con.Open();

// create the DataSet
DataSet ds = new DataSet();

// create the adapter and fill the DataSet
OleDbDataAdapter da = new OleDbDataAdapter("Select * from SUBSCRIBER_DEVICES", con);
da.Fill(ds);
GridView1.DataSource = ds.Tables[0];
GridView1.DataBind();

// close the connection
con.Close();
}
AnswerRe: Problem with Connection ? Pin
Abhishek Sur27-Oct-09 7:54
professionalAbhishek Sur27-Oct-09 7:54 
Questionhow to catch the row number Pin
souravghosh1827-Oct-09 3:48
souravghosh1827-Oct-09 3:48 
AnswerRe: how to catch the row number Pin
dan!sh 27-Oct-09 4:07
professional dan!sh 27-Oct-09 4:07 
AnswerRe: how to catch the row number Pin
Not Active27-Oct-09 4:13
mentorNot Active27-Oct-09 4:13 
QuestionError:Failed to generate user instance of SQL SERVER Pin
nainakarri27-Oct-09 2:28
nainakarri27-Oct-09 2:28 
AnswerRe: Error:Failed to generate user instance of SQL SERVER Pin
Abhishek Sur27-Oct-09 8:04
professionalAbhishek Sur27-Oct-09 8:04 
GeneralRe: Error:Failed to generate user instance of SQL SERVER Pin
nainakarri27-Oct-09 8:22
nainakarri27-Oct-09 8:22 
QuestionControl for ScrapBook Pin
hrishiS27-Oct-09 2:26
hrishiS27-Oct-09 2:26 
AnswerRe: Control for ScrapBook Pin
Not Active27-Oct-09 3:05
mentorNot Active27-Oct-09 3:05 
GeneralRe: Control for ScrapBook Pin
hrishiS27-Oct-09 3:34
hrishiS27-Oct-09 3:34 
GeneralRe: Control for ScrapBook Pin
Not Active27-Oct-09 4:17
mentorNot Active27-Oct-09 4:17 
QuestionCould not find installable ISAM. Pin
Purish Dwivedi27-Oct-09 1:56
Purish Dwivedi27-Oct-09 1:56 
AnswerRe: Could not find installable ISAM. Pin
danasegaranea27-Oct-09 2:42
danasegaranea27-Oct-09 2:42 
QuestionRe: Could not find installable ISAM. Pin
Purish Dwivedi27-Oct-09 3:13
Purish Dwivedi27-Oct-09 3:13 
AnswerRe: Could not find installable ISAM. Pin
danasegaranea27-Oct-09 20:25
danasegaranea27-Oct-09 20:25 
Questioncollapsible meanubar Pin
saurabh8april27-Oct-09 1:13
saurabh8april27-Oct-09 1:13 
AnswerRe: collapsible meanubar Pin
saurabh8april27-Oct-09 20:38
saurabh8april27-Oct-09 20:38 

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.