Click here to Skip to main content
15,916,378 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Application[cache] before app starts Pin
minhpc_bk21-Jun-06 15:13
minhpc_bk21-Jun-06 15:13 
QuestionQuery Problem Pin
varshavmane21-Jun-06 1:39
varshavmane21-Jun-06 1:39 
AnswerRe: Query Problem Pin
albCode21-Jun-06 1:58
albCode21-Jun-06 1:58 
GeneralRe: Query Problem Pin
varshavmane21-Jun-06 2:00
varshavmane21-Jun-06 2:00 
GeneralRe: Query Problem Pin
Malcolm Smart21-Jun-06 2:07
Malcolm Smart21-Jun-06 2:07 
GeneralRe: Query Problem Pin
varshavmane21-Jun-06 2:16
varshavmane21-Jun-06 2:16 
GeneralRe: Query Problem Pin
Malcolm Smart21-Jun-06 2:21
Malcolm Smart21-Jun-06 2:21 
GeneralRe: Query Problem Pin
albCode21-Jun-06 2:10
albCode21-Jun-06 2:10 
SqlConnection c = new SqlConnection(//connectionstring);<br />
c.Open();<br />
DataSet ds = new DataSet();<br />
string sel = " SELECT schauditor_employee "+<br />
" FROM scheduleauditor , schedule "+<br />
" WHERE schedule_no = 1 "+<br />
" AND schauditor_schedule = schedule_no ";<br />
SqlDataAdapter da = new SqlDataAdapter(sel,c);<br />
da.Fill(ds);<br />
//u said sql query return two rows and u want to get values in variables<br />
string value1 = ds.tables[0].Rows[0][//specify index of column by index  or string name].ToString();<br />
string value2 = ds.tables[0].Rows[1][//specify index of column by index  or string name].ToString();<br />
c.Close();

GeneralRe: Query Problem Pin
varshavmane21-Jun-06 2:19
varshavmane21-Jun-06 2:19 
GeneralRe: Query Problem Pin
Malcolm Smart21-Jun-06 2:27
Malcolm Smart21-Jun-06 2:27 
GeneralRe: Query Problem Pin
albCode21-Jun-06 2:28
albCode21-Jun-06 2:28 
GeneralRe: Query Problem [modified] Pin
varshavmane21-Jun-06 2:59
varshavmane21-Jun-06 2:59 
AnswerRe: Query Problem Pin
Nagraj Naik21-Jun-06 2:07
Nagraj Naik21-Jun-06 2:07 
QuestionGet variable from javascript Pin
Commickey21-Jun-06 1:34
Commickey21-Jun-06 1:34 
AnswerRe: Get variable from javascript Pin
varshavmane21-Jun-06 1:45
varshavmane21-Jun-06 1:45 
GeneralRe: Get variable from javascript Pin
Commickey21-Jun-06 1:59
Commickey21-Jun-06 1:59 
GeneralRe: Get variable from javascript Pin
varshavmane21-Jun-06 2:13
varshavmane21-Jun-06 2:13 
GeneralRe: Get variable from javascript Pin
RichardGrimmer22-Jun-06 5:08
RichardGrimmer22-Jun-06 5:08 
QuestionCDONTS PROBLEM Pin
123XYZQWERT21-Jun-06 1:09
123XYZQWERT21-Jun-06 1:09 
AnswerRe: CDONTS PROBLEM Pin
Vasudevan Deepak Kumar21-Jun-06 2:17
Vasudevan Deepak Kumar21-Jun-06 2:17 
GeneralRe: CDONTS PROBLEM Pin
123XYZQWERT21-Jun-06 2:18
123XYZQWERT21-Jun-06 2:18 
AnswerRe: CDONTS PROBLEM Pin
Malcolm Smart21-Jun-06 2:24
Malcolm Smart21-Jun-06 2:24 
GeneralRe: CDONTS PROBLEM Pin
123XYZQWERT21-Jun-06 2:31
123XYZQWERT21-Jun-06 2:31 
AnswerRe: CDONTS PROBLEM Pin
Nagraj Naik21-Jun-06 3:53
Nagraj Naik21-Jun-06 3:53 
Questionuse web service at work with database Pin
sogol_n2021-Jun-06 0:30
sogol_n2021-Jun-06 0:30 

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.