Click here to Skip to main content
16,016,623 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionRendering an aspx page Pin
gruvis4-Jul-06 23:59
gruvis4-Jul-06 23:59 
AnswerRe: Rendering an aspx page Pin
Tirthadip5-Jul-06 0:19
Tirthadip5-Jul-06 0:19 
Questiondomain creation using asp.net Pin
aneesh_akt4-Jul-06 23:53
aneesh_akt4-Jul-06 23:53 
Questiondomain creation using asp.net Pin
aneesh_akt4-Jul-06 23:53
aneesh_akt4-Jul-06 23:53 
QuestionDisplay Record Pin
Socheat.Net4-Jul-06 22:48
Socheat.Net4-Jul-06 22:48 
AnswerRe: Display Record Pin
mnaveed4-Jul-06 23:00
mnaveed4-Jul-06 23:00 
GeneralRe: Display Record Pin
Socheat.Net4-Jul-06 23:11
Socheat.Net4-Jul-06 23:11 
GeneralRe: Display Record Pin
mnaveed5-Jul-06 0:00
mnaveed5-Jul-06 0:00 
its prety basic stuff can you pls pin point where you getting problem for this
here is code sample which tell you how to connect to db file and get data
OleDbConnection con;<br />
        OleDbDataAdapter da ;<br />
        DataSet ds = new DataSet();<br />
        string sSQL;<br />
        sSQL = "select * from Products";<br />
<br />
<br />
        string sConStr = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=C:\\Northwind.mdb; User Id=admin; Password=";<br />
<br />
        con = new OleDbConnection(sConStr);<br />
        da = new OleDbDataAdapter(sSQL,con);<br />
<br />
        da.Fill(ds, "Products");<br />
<br />
        return ds;


Nav.
GeneralRe: Display Record Pin
Socheat.Net5-Jul-06 21:21
Socheat.Net5-Jul-06 21:21 
GeneralRe: Display Record Pin
Tirthadip5-Jul-06 0:05
Tirthadip5-Jul-06 0:05 
GeneralRe: Display Record Pin
Socheat.Net5-Jul-06 21:22
Socheat.Net5-Jul-06 21:22 
QuestionHow to include ASP file in .aspx page Pin
ypsyong4-Jul-06 22:25
ypsyong4-Jul-06 22:25 
AnswerRe: How to include ASP file in .aspx page Pin
Socheat.Net4-Jul-06 22:49
Socheat.Net4-Jul-06 22:49 
GeneralRe: How to include ASP file in .aspx page Pin
ypsyong4-Jul-06 23:12
ypsyong4-Jul-06 23:12 
GeneralRe: How to include ASP file in .aspx page Pin
Socheat.Net4-Jul-06 23:37
Socheat.Net4-Jul-06 23:37 
AnswerRe: How to include ASP file in .aspx page Pin
Guffa5-Jul-06 1:03
Guffa5-Jul-06 1:03 
QuestionEnter key Press Event on textbox Pin
nabeelkhan4-Jul-06 21:42
nabeelkhan4-Jul-06 21:42 
AnswerRe: Enter key Press Event on textbox Pin
mnaveed4-Jul-06 22:55
mnaveed4-Jul-06 22:55 
GeneralRe: Enter key Press Event on textbox [modified] Pin
nabeelkhan4-Jul-06 23:57
nabeelkhan4-Jul-06 23:57 
GeneralRe: Enter key Press Event on textbox Pin
mnaveed5-Jul-06 0:31
mnaveed5-Jul-06 0:31 
GeneralRe: Enter key Press Event on textbox Pin
nabeelkhan5-Jul-06 0:44
nabeelkhan5-Jul-06 0:44 
GeneralRe: Enter key Press Event on textbox Pin
mnaveed5-Jul-06 1:03
mnaveed5-Jul-06 1:03 
GeneralRe: Enter key Press Event on textbox Pin
nabeelkhan5-Jul-06 1:32
nabeelkhan5-Jul-06 1:32 
GeneralRe: Enter key Press Event on textbox Pin
mnaveed5-Jul-06 2:08
mnaveed5-Jul-06 2:08 
QuestionSQL 2000 Database connection error Pin
For_IT4-Jul-06 21:40
For_IT4-Jul-06 21:40 

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.