4
Answers

Drop down list problem for editing req in grid view

Becky Bloomwood

Becky Bloomwood

14y
2.6k
1
Hi, I am trying to do an edit req and when I click on the edit, one of the options is DDL. However, there is a prob. I am not sure of how to resolve it.
This is the business logic for the DDL:

 

protected void gvChecklist_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
DropDownList cmbStatus = (DropDownList)e.Row.FindControl("cmbStatus");
cmbStatus.DataSource = vrmdb.Get_Status();
cmbStatus.DataTextField = "status";
cmbStatus.DataValueField = "status";
cmbStatus.DataBind();
}
if (e.Row.RowType == DataControlRowType.DataRow)
{
DropDownList cmbNewStatus = (DropDownList)e.Row.FindControl("cmbNewStatus");
if (cmbNewStatus != null)
{
cmbNewStatus.DataSource = vrmdb.Get_Status();
cmbNewStatus.DataTextField = "status";
cmbNewStatus.DataValueField = "status";
cmbNewStatus.DataBind();
cmbNewStatus.SelectedValue = gvChecklist.DataKeys[e.Row.RowIndex].Values[1].ToString();
};
}
}
protected void gvChecklist_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.Footer)
{
DropDownList cmbStatus = (DropDownList)e.Row.FindControl("cmbStatus");
cmbStatus.DataSource = vrmdb.Get_Status();
cmbStatus.DataTextField = "status";
cmbStatus.DataValueField = "status";
cmbStatus.DataBind();
}
if (e.Row.RowType == DataControlRowType.DataRow)
{
DropDownList cmbNewStatus = (DropDownList)e.Row.FindControl("cmbNewStatus");
if (cmbNewStatus != null)
{
cmbNewStatus.DataSource = vrmdb.Get_Status();
cmbNewStatus.DataTextField = "status";
cmbNewStatus.DataValueField = "status";
cmbNewStatus.DataBind();
cmbNewStatus.SelectedValue = gvChecklist.DataKeys[e.Row.RowIndex].Values[1].ToString();
};
}
}

This is the error:

 

Server Error in '/VRM_WebSite' Application.

Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index


Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index

Source Error:


Line 417:                    cmbNewStatus.DataValueField = "status";
Line 418:                    cmbNewStatus.DataBind();
Line 419:                    cmbNewStatus.SelectedValue = gvChecklist.DataKeys[e.Row.RowIndex].Values[1].ToString();
Line 420:                };
Line 421:            }

Source File: c:\Users\L31410\Desktop\Peggie\Peggie\Deployment Source\Phase 1\Deployment 25 Nov for StarHub\VS Projects Source\VRM_WebSite\app\vrm\ContractThreeGridView.aspx.cs    Line: 419

Stack Trace:


Thks for ur help all these while. I am grateful for it:)













 
 
Answers (4)
0
hemu kumar  shriwastaw

hemu kumar shriwastaw

NA 51 2.3k 7y
In my previous post i have mention it.just i want to view the excel sheet in browser and i will also perform the adding,delete and update option in excel sheet through browser
0
Sundar

Sundar

NA 9.6k 94.5k 7y
Share me the issue, let me try to solve. 
0
hemu kumar  shriwastaw

hemu kumar shriwastaw

NA 51 2.3k 7y
Thanks Sunder for providing the link.
but i am not sucessful.
0
Sundar

Sundar

NA 9.6k 94.5k 7y
https://support.microsoft.com/en-us/help/306572/how-to-query-and-display-excel-data-by-using-asp-net--ado-net--and-vis
 
https://stackoverflow.com/questions/33101538/is-it-possible-to-open-and-edit-an-excel-file-on-web-browser 
 
Follow these links, this may help