Click here to Skip to main content
15,899,937 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: MutiLanguage Website Pin
Ashfield16-Feb-09 0:38
Ashfield16-Feb-09 0:38 
QuestionHow to place a Mozilla custom toolbar in ASP.Net applicaion Pin
Nekkantidivya13-Feb-09 22:18
Nekkantidivya13-Feb-09 22:18 
AnswerRe: How to place a Mozilla custom toolbar in ASP.Net applicaion Pin
Christian Graus13-Feb-09 22:31
protectorChristian Graus13-Feb-09 22:31 
QuestionPopulating Sybase database date in three drop downlist Pin
Praneeth Babu K13-Feb-09 21:04
Praneeth Babu K13-Feb-09 21:04 
AnswerRe: Populating Sybase database date in three drop downlist Pin
ABitSmart13-Feb-09 21:19
ABitSmart13-Feb-09 21:19 
GeneralRe: Populating Sybase database date in three drop downlist Pin
Praneeth Babu K13-Feb-09 21:41
Praneeth Babu K13-Feb-09 21:41 
AnswerRe: Populating Sybase database date in three drop downlist Pin
Abhijit Jana13-Feb-09 21:49
professionalAbhijit Jana13-Feb-09 21:49 
GeneralRe: Populating Sybase database date in three drop downlist Pin
Praneeth Babu K13-Feb-09 22:05
Praneeth Babu K13-Feb-09 22:05 
sorry yaar for repeatedly asking ,when i try like this i am getting in dropdownlist as system.data.dataset

OdbcCommand cmd = new OdbcCommand("select convert(date,getutcdate())", conn);
OdbcDataAdapter ad = new OdbcDataAdapter(cmd);
DataSet ds = new DataSet();
try
{
conn.Open();
cmd.ExecuteNonQuery();
ad.Fill(ds, "date");
if (ds.Tables[0].Rows.Count > 0)
{
currdate = ds.ToString();
string[] temp = currdate.Split(new char[] { '/' });
ddlFromDay.Items.Add(temp[0].ToString());


}
}
catch { }
finally
{
conn.Close();
}
GeneralRe: Populating Sybase database date in three drop downlist Pin
Abhijit Jana13-Feb-09 22:10
professionalAbhijit Jana13-Feb-09 22:10 
GeneralRe: Populating Sybase database date in three drop downlist Pin
Praneeth Babu K13-Feb-09 22:31
Praneeth Babu K13-Feb-09 22:31 
GeneralRe: Populating Sybase database date in three drop downlist Pin
Abhijit Jana13-Feb-09 22:56
professionalAbhijit Jana13-Feb-09 22:56 
GeneralRe: Populating Sybase database date in three drop downlist Pin
ABitSmart13-Feb-09 21:50
ABitSmart13-Feb-09 21:50 
GeneralRe: Populating Sybase database date in three drop downlist Pin
Praneeth Babu K13-Feb-09 22:06
Praneeth Babu K13-Feb-09 22:06 
GeneralRe: Populating Sybase database date in three drop downlist Pin
ABitSmart13-Feb-09 22:10
ABitSmart13-Feb-09 22:10 
AnswerRe: Populating Sybase database date in three drop downlist Pin
Praneeth Babu K15-Feb-09 18:02
Praneeth Babu K15-Feb-09 18:02 
QuestionWindows Service Pin
sjs4u13-Feb-09 19:21
sjs4u13-Feb-09 19:21 
AnswerRe: Windows Service Pin
Christian Graus13-Feb-09 22:34
protectorChristian Graus13-Feb-09 22:34 
GeneralRe: Windows Service Pin
sjs4u13-Feb-09 23:20
sjs4u13-Feb-09 23:20 
GeneralRe: Windows Service Pin
Scott Dorman14-Feb-09 15:31
professionalScott Dorman14-Feb-09 15:31 
GeneralRe: Windows Service Pin
Christian Graus14-Feb-09 22:47
protectorChristian Graus14-Feb-09 22:47 
QuestionFrame Pin
ellllllllie13-Feb-09 19:01
ellllllllie13-Feb-09 19:01 
QuestionGridview Event Problem Pin
ais0713-Feb-09 18:25
ais0713-Feb-09 18:25 
AnswerRe: Gridview Event Problem Pin
Calin Tatar14-Feb-09 14:15
Calin Tatar14-Feb-09 14:15 
QuestionHow to avoid Videos being cached [modified] Pin
.NET- India 13-Feb-09 17:49
.NET- India 13-Feb-09 17:49 
AnswerRe: How to avoid Videos being cached Pin
ABitSmart13-Feb-09 21:17
ABitSmart13-Feb-09 21:17 

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.