Click here to Skip to main content
15,905,508 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to get two value from database and combine it Pin
ypsyong30-Jul-06 21:06
ypsyong30-Jul-06 21:06 
AnswerRe: How to get two value from database and combine it Pin
Paddy Boyd30-Jul-06 21:27
Paddy Boyd30-Jul-06 21:27 
GeneralRe: How to get two value from database and combine it Pin
ypsyong30-Jul-06 21:40
ypsyong30-Jul-06 21:40 
QuestionDataBinder.Eval() Pin
peshawarcoder30-Jul-06 20:09
peshawarcoder30-Jul-06 20:09 
AnswerRe: DataBinder.Eval() Pin
minhpc_bk30-Jul-06 20:34
minhpc_bk30-Jul-06 20:34 
GeneralRe: DataBinder.Eval() Pin
peshawarcoder30-Jul-06 20:47
peshawarcoder30-Jul-06 20:47 
GeneralRe: DataBinder.Eval() Pin
peshawarcoder30-Jul-06 20:48
peshawarcoder30-Jul-06 20:48 
AnswerRe: DataBinder.Eval() Pin
Pradipta Basu30-Jul-06 20:55
Pradipta Basu30-Jul-06 20:55 
you can write a function to combine the two fields with comman and then use that function in DataTextField.

like,
string Combine(object o1, object o2)
{
return o1.ToString() + "," + o2.ToString();
}

you can use
lstItems.DataTextField = Combine(DataBinder.Eval(dv, "col2"), DataBinder.Eval(dv, "col3"));


Thanks,
Pradipta.

Pradipta Basu
QuestionHow to filter Html tags before storing in database Pin
Exelioindia30-Jul-06 19:59
Exelioindia30-Jul-06 19:59 
AnswerRe: How to filter Html tags before storing in database Pin
minhpc_bk30-Jul-06 20:11
minhpc_bk30-Jul-06 20:11 
GeneralRe: How to filter Html tags before storing in database Pin
Pradipta Basu30-Jul-06 21:04
Pradipta Basu30-Jul-06 21:04 
QuestionHow to play audio files Pin
nisha261230-Jul-06 16:51
nisha261230-Jul-06 16:51 
AnswerRe: How to play audio files Pin
minhpc_bk30-Jul-06 20:13
minhpc_bk30-Jul-06 20:13 
QuestionUsing server.transfer Pin
doyang30-Jul-06 16:23
doyang30-Jul-06 16:23 
AnswerRe: Using server.transfer Pin
minhpc_bk30-Jul-06 20:14
minhpc_bk30-Jul-06 20:14 
GeneralRe: Using server.transfer Pin
doyang2-Aug-06 22:28
doyang2-Aug-06 22:28 
AnswerRe: Using server.transfer Pin
AnjuV30-Jul-06 21:03
AnjuV30-Jul-06 21:03 
GeneralRe: Using server.transfer Pin
doyang26-Sep-06 15:46
doyang26-Sep-06 15:46 
AnswerRe: Using server.transfer Pin
Mairy31-Jul-06 23:11
Mairy31-Jul-06 23:11 
AnswerRe: Using server.transfer Pin
doyang2-Aug-06 22:33
doyang2-Aug-06 22:33 
QuestionRe: Using server.transfer [Follow-up] Pin
doyang2-Aug-06 22:35
doyang2-Aug-06 22:35 
QuestionProgrammically Adding Controls Pin
Drathmar30-Jul-06 15:42
Drathmar30-Jul-06 15:42 
AnswerRe: Programmically Adding Controls Pin
minhpc_bk30-Jul-06 20:17
minhpc_bk30-Jul-06 20:17 
GeneralRe: Programmically Adding Controls Pin
Drathmar31-Jul-06 11:50
Drathmar31-Jul-06 11:50 
GeneralRe: Programmically Adding Controls Pin
minhpc_bk31-Jul-06 16:11
minhpc_bk31-Jul-06 16:11 

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.