Click here to Skip to main content
15,921,577 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Downloading link Pin
sujithkumarsl6-May-07 22:04
sujithkumarsl6-May-07 22:04 
QuestionInserting Data Into DB Pin
Lijo Rajan4-May-07 18:05
Lijo Rajan4-May-07 18:05 
AnswerRe: Inserting Data Into DB Pin
Sathesh Sakthivel4-May-07 21:03
Sathesh Sakthivel4-May-07 21:03 
QuestionDebugging unmanaged Native DLL in ASP.net Pin
The 0ne4-May-07 13:43
The 0ne4-May-07 13:43 
AnswerRe: Debugging unmanaged Native DLL in ASP.net Pin
Sathesh Sakthivel4-May-07 21:05
Sathesh Sakthivel4-May-07 21:05 
GeneralRe: Debugging unmanaged Native DLL in ASP.net Pin
The 0ne5-May-07 7:26
The 0ne5-May-07 7:26 
QuestionDrop Down List Pin
seemamltn4-May-07 13:00
seemamltn4-May-07 13:00 
AnswerRe: Drop Down List Pin
SABhatti4-May-07 16:28
SABhatti4-May-07 16:28 
AnswerRe: Drop Down List Pin
Partha G4-May-07 17:36
Partha G4-May-07 17:36 
AnswerRe: Drop Down List Pin
Kartik Rathi4-May-07 18:35
Kartik Rathi4-May-07 18:35 
Questionmy formView has not edit,delete,new buttons Pin
hdv2124-May-07 11:59
hdv2124-May-07 11:59 
AnswerRe: my formView has not edit,delete,new buttons Pin
aransiola5-May-07 0:39
aransiola5-May-07 0:39 
QuestionHelp Please Pin
yasso_1154-May-07 11:24
yasso_1154-May-07 11:24 
AnswerRe: Help Please Pin
SABhatti4-May-07 15:29
SABhatti4-May-07 15:29 
GeneralRe: Help Please Pin
yasso_1154-May-07 23:07
yasso_1154-May-07 23:07 
GeneralRe: Help Please Pin
SABhatti8-May-07 11:31
SABhatti8-May-07 11:31 
well the following code should be used in your SQL STATEMENT or stored procedure whateevr you are using

case when datefield='1/1/1900' then '' else convert(varchar, datefield, 101) end as datefield

or use OnRowDataBound="gv_RowDataBound" in html where you insert the gridview control and int he code behind create a sub

protected virtual void gv_RowDataBound(object source, gridviewroweventargs e)

and use this in this sub

if(row.Cells[datefieldindex].Text=='1/1/1900')
row.Cells[datefieldindex].Text = string.Empty;

look at this [^] for gridview


-----

AnswerRe: Help Please Pin
Naif_Prof5-May-07 1:36
Naif_Prof5-May-07 1:36 
GeneralRe: Help Please Pin
yasso_1155-May-07 5:55
yasso_1155-May-07 5:55 
QuestionPost back Pin
seemamltn4-May-07 10:06
seemamltn4-May-07 10:06 
AnswerRe: Post back Pin
kubben4-May-07 13:34
kubben4-May-07 13:34 
AnswerRe: Post back Pin
SABhatti4-May-07 16:36
SABhatti4-May-07 16:36 
QuestionText_changed event Pin
TheEagle4-May-07 9:59
TheEagle4-May-07 9:59 
AnswerRe: Text_changed event Pin
kubben4-May-07 13:36
kubben4-May-07 13:36 
GeneralRe: Text_changed event Pin
TheEagle4-May-07 16:31
TheEagle4-May-07 16:31 
GeneralRe: Text_changed event Pin
kubben5-May-07 1:13
kubben5-May-07 1:13 

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.