Click here to Skip to main content
15,907,233 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionGo to the top of the page after GridView rowcommand in UpdatePanel? Pin
vicky45720-Apr-07 6:23
vicky45720-Apr-07 6:23 
QuestionDataGrid Getting current Row Values Pin
zamiran20-Apr-07 5:36
zamiran20-Apr-07 5:36 
AnswerRe: DataGrid Getting current Row Values Pin
Tarakeshwar Reddy20-Apr-07 5:48
professionalTarakeshwar Reddy20-Apr-07 5:48 
GeneralRe: DataGrid Getting current Row Values Pin
zamiran20-Apr-07 6:03
zamiran20-Apr-07 6:03 
GeneralRe: DataGrid Getting current Row Values Pin
Arun.Immanuel20-Apr-07 6:09
Arun.Immanuel20-Apr-07 6:09 
GeneralRe: DataGrid Getting current Row Values Pin
zamiran22-Apr-07 22:36
zamiran22-Apr-07 22:36 
GeneralRe: DataGrid Getting current Row Values Pin
Chetan Ranpariya22-Apr-07 23:01
Chetan Ranpariya22-Apr-07 23:01 
GeneralRe: DataGrid Getting current Row Values Pin
zamiran22-Apr-07 23:12
zamiran22-Apr-07 23:12 
Hi Chetan,

Here is the way I populate the DataGrid. I thought in this way the textboxes will be called after the DataColumns.
I have the Column Names in my DataGrid named "Field1", "Field2" - but is this different from the control name?

Now I'm totally lost Frown | :(

Thanks for your kind help.

private void Bind()
{
fieldList = new ArrayList();
fieldList.Add("Field1");
fieldList.Add("Field2");
missGridTable = new DataTable();
missGridTable = sp.BindWithFieldList(web,"Test List",fieldList,error); //this brings back table with field names specified in the fieldList array.
missionGrid.DataSource = missGridTable;
missionGrid.AutoGenerateColumns=false;
missionGrid.DataBind();

foreach(DataColumn c in missGridTable.Columns)
{
missionGrid.Columns.Add(CreateBoundColumn(c));

}
missionGrid.DataBind();
}
GeneralRe: DataGrid Getting current Row Values Pin
Chetan Ranpariya22-Apr-07 23:30
Chetan Ranpariya22-Apr-07 23:30 
GeneralRe: DataGrid Getting current Row Values Pin
Tarakeshwar Reddy20-Apr-07 6:20
professionalTarakeshwar Reddy20-Apr-07 6:20 
QuestionQuery string problem for images [modified] Pin
Davide Icardi20-Apr-07 5:00
Davide Icardi20-Apr-07 5:00 
AnswerRe: Query string problem for images Pin
Guffa20-Apr-07 5:38
Guffa20-Apr-07 5:38 
AnswerRe: Query string problem for images Pin
Davide Icardi20-Apr-07 9:51
Davide Icardi20-Apr-07 9:51 
QuestionWhich Graph Control to Use? Pin
Arun.Immanuel20-Apr-07 4:20
Arun.Immanuel20-Apr-07 4:20 
AnswerRe: Which Graph Control to Use? Pin
Rakheesh Chalil21-Apr-07 16:38
Rakheesh Chalil21-Apr-07 16:38 
GeneralRe: Which Graph Control to Use? Pin
Arun.Immanuel21-Apr-07 18:41
Arun.Immanuel21-Apr-07 18:41 
Questioncan't see external classes in one namespase Pin
iuliuz20-Apr-07 3:42
iuliuz20-Apr-07 3:42 
AnswerRe: can't see external classes in one namespase Pin
Jesse Squire20-Apr-07 4:11
Jesse Squire20-Apr-07 4:11 
GeneralRe: can't see external classes in one namespase Pin
iuliuz23-Apr-07 21:05
iuliuz23-Apr-07 21:05 
GeneralRe: can't see external classes in one namespase Pin
Jesse Squire26-Apr-07 1:53
Jesse Squire26-Apr-07 1:53 
AnswerRe: Radio button template column Pin
varshavmane20-Apr-07 2:57
varshavmane20-Apr-07 2:57 
General[Message Deleted] Pin
kiccha8420-Apr-07 3:12
kiccha8420-Apr-07 3:12 
GeneralRe: Radio button template column Pin
Sandeep Akhare20-Apr-07 3:24
Sandeep Akhare20-Apr-07 3:24 
GeneralRe: Radio button template column Pin
varshavmane20-Apr-07 3:34
varshavmane20-Apr-07 3:34 
GeneralRe: Radio button template column Pin
Sandeep Akhare20-Apr-07 3:50
Sandeep Akhare20-Apr-07 3:50 

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.