Click here to Skip to main content
15,890,845 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionASP C# Pin
sanforjackass17-Nov-09 21:23
sanforjackass17-Nov-09 21:23 
AnswerRe: ASP C# Pin
sashidhar17-Nov-09 21:39
sashidhar17-Nov-09 21:39 
GeneralRe: ASP C# Pin
Abhishek Sur17-Nov-09 22:37
professionalAbhishek Sur17-Nov-09 22:37 
AnswerRe: ASP C# Pin
The Man from U.N.C.L.E.18-Nov-09 2:46
The Man from U.N.C.L.E.18-Nov-09 2:46 
QuestionSplitting rows in dataGrid Pin
nour12317-Nov-09 20:40
nour12317-Nov-09 20:40 
AnswerRe: Splitting rows in dataGrid Pin
Abhishek Sur17-Nov-09 20:44
professionalAbhishek Sur17-Nov-09 20:44 
GeneralRe: Splitting rows in dataGrid Pin
nour12317-Nov-09 21:10
nour12317-Nov-09 21:10 
GeneralRe: Splitting rows in dataGrid Pin
Abhishek Sur17-Nov-09 21:21
professionalAbhishek Sur17-Nov-09 21:21 
Where did you put?
I think you need to put it under DataBound Event handler. Might be by this way :
private void GridView_RowDataBound(Object sender, GridViewRowEventArgs e)

    if(e.Row.RowType == DataControlRowType.DataRow)
    {
      
      e.Row.Cells(1).Text = "" + DataBinder.Eval(e.Row.DataItem, "colname").ToString().Split(" ") + "";

    }

}


The split logic should be placed according to what you require.
Also adjust the code according to what you need. Wink | ;)

Abhishek Sur
Don't forget to click "Good Answer" if you like this Solution.
My Latest Articles-->

Simplify Code Using NDepend
Basics of Bing Search API using .NET
Microsoft Bing MAP using Javascript

GeneralRe: Splitting rows in dataGrid Pin
nour12317-Nov-09 22:30
nour12317-Nov-09 22:30 
GeneralRe: Splitting rows in dataGrid Pin
sashidhar17-Nov-09 22:33
sashidhar17-Nov-09 22:33 
Questionmove the list items between 2 listbox Pin
pss.srinivasan17-Nov-09 19:09
pss.srinivasan17-Nov-09 19:09 
AnswerRe: move the list items between 2 listbox Pin
Abhijit Jana17-Nov-09 19:15
professionalAbhijit Jana17-Nov-09 19:15 
GeneralRe: move the list items between 2 listbox Pin
pss.srinivasan17-Nov-09 19:18
pss.srinivasan17-Nov-09 19:18 
GeneralRe: move the list items between 2 listbox Pin
Abhijit Jana17-Nov-09 19:32
professionalAbhijit Jana17-Nov-09 19:32 
GeneralRe: move the list items between 2 listbox Pin
pss.srinivasan17-Nov-09 19:40
pss.srinivasan17-Nov-09 19:40 
AnswerRe: move the list items between 2 listbox [modified] Pin
sashidhar17-Nov-09 19:49
sashidhar17-Nov-09 19:49 
AnswerRe: move the list items between 2 listbox Pin
Abhishek Sur17-Nov-09 20:52
professionalAbhishek Sur17-Nov-09 20:52 
QuestionImporting the data from xml database to TALLY Software Pin
lrsalunkhe17-Nov-09 18:30
lrsalunkhe17-Nov-09 18:30 
AnswerRe: Importing the data from xml database to TALLY Software Pin
sashidhar17-Nov-09 18:34
sashidhar17-Nov-09 18:34 
AnswerRe: Importing the data from xml database to TALLY Software Pin
Abhijit Jana17-Nov-09 18:35
professionalAbhijit Jana17-Nov-09 18:35 
GeneralRe: Importing the data from xml database to TALLY Software Pin
lrsalunkhe17-Nov-09 18:48
lrsalunkhe17-Nov-09 18:48 
GeneralRe: Importing the data from xml database to TALLY Software Pin
Abhijit Jana17-Nov-09 19:04
professionalAbhijit Jana17-Nov-09 19:04 
GeneralRe: Importing the data from xml database to TALLY Software Pin
lrsalunkhe17-Nov-09 19:23
lrsalunkhe17-Nov-09 19:23 
GeneralRe: Importing the data from xml database to TALLY Software Pin
srdabhade13-Dec-09 19:25
srdabhade13-Dec-09 19:25 
QuestionCustomizing the CreatUserWizard Component Pin
DRAYKKO17-Nov-09 18:04
professionalDRAYKKO17-Nov-09 18:04 

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.