Click here to Skip to main content
15,889,909 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: MultiLanguage web site Pin
Parwej Ahamad29-May-09 20:17
professionalParwej Ahamad29-May-09 20:17 
GeneralRe: MultiLanguage web site Pin
cocoonwls1-Jun-09 20:07
cocoonwls1-Jun-09 20:07 
Questiondate time picker Pin
jainiraj29-May-09 19:15
jainiraj29-May-09 19:15 
AnswerRe: date time picker Pin
Baran M29-May-09 19:22
Baran M29-May-09 19:22 
QuestionAbout Datagrid [modified] Pin
mahichandu29-May-09 10:16
mahichandu29-May-09 10:16 
AnswerRe: About Datagrid Pin
Bassam Saoud29-May-09 11:08
Bassam Saoud29-May-09 11:08 
AnswerRe: About Datagrid Pin
adatapost29-May-09 15:48
adatapost29-May-09 15:48 
AnswerRe: About Datagrid Pin
Baran M29-May-09 19:15
Baran M29-May-09 19:15 
logic 1:
When you fetch the values from the table, write query like this

select case empty_column when 0 then '' from table_name
where <condition>

logic 2:
If you use gridview, in GridView1_RowDataBound event you can check like this,

if (e.Row.Cells[1].Text.Equals("0"))
{
e.Row.Cells[1].Text = "";
}

Hope it helps you.
QuestionRe: About Datagrid [modified] Pin
mahichandu1-Jun-09 4:18
mahichandu1-Jun-09 4:18 
QuestionPull nested xml values into Datagrid Pin
ErikKoz29-May-09 8:59
ErikKoz29-May-09 8:59 
AnswerRe: Pull nested xml values into Datagrid Pin
Bassam Saoud29-May-09 11:15
Bassam Saoud29-May-09 11:15 
AnswerRe: Pull nested xml values into Datagrid Pin
adatapost29-May-09 15:45
adatapost29-May-09 15:45 
QuestionFiltering a GridView on a column using checkboxes Pin
Member 540677929-May-09 6:39
Member 540677929-May-09 6:39 
AnswerRe: Filtering a GridView on a column using checkboxes Pin
thowra29-May-09 7:07
thowra29-May-09 7:07 
Questionchangepassword Pin
jainiraj29-May-09 4:40
jainiraj29-May-09 4:40 
AnswerRe: changepassword Pin
Ramesh Swaminathan29-May-09 6:59
Ramesh Swaminathan29-May-09 6:59 
AnswerRe: changepassword Pin
Baran M29-May-09 7:35
Baran M29-May-09 7:35 
AnswerRe: changepassword Pin
adatapost29-May-09 15:55
adatapost29-May-09 15:55 
QuestionFCKEditor - How to filter out images and smileys from the editor's text / value? [modified] Pin
NetQuestions29-May-09 4:23
NetQuestions29-May-09 4:23 
QuestionHow to allow different kinds of text in textbox based on dropdownlist selecteditem? Pin
Pawan Kiran29-May-09 3:00
Pawan Kiran29-May-09 3:00 
AnswerRe: How to allow different kinds of text in textbox based on dropdownlist selecteditem? Pin
adatapost29-May-09 4:39
adatapost29-May-09 4:39 
GeneralRe: How to allow different kinds of text in textbox based on dropdownlist selecteditem? Pin
Pawan Kiran29-May-09 5:54
Pawan Kiran29-May-09 5:54 
GeneralRe: How to allow different kinds of text in textbox based on dropdownlist selecteditem? Pin
AlexeiXX329-May-09 11:11
AlexeiXX329-May-09 11:11 
GeneralRe: How to allow different kinds of text in textbox based on dropdownlist selecteditem? Pin
adatapost29-May-09 15:38
adatapost29-May-09 15:38 
QuestionRe: How to allow different kinds of text in textbox based on dropdownlist selecteditem? Pin
AlexeiXX329-May-09 11:08
AlexeiXX329-May-09 11:08 

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.