Hi Team
I'm trying to pass a value and redirect to another page based on the row user select. The code works fine on my local PC but after I deployed the application to the dev. server the following error is returned (54) Connection reset by peer. after clicking the select button.
Can anyone asssist me on this issue or i'm missing to set configuration.
Any advice will be greatly appreciated
Thanks in advance
I'm trying to pass a value and redirect to another page based on the row user select. The code works fine on my local PC but after I deployed the application to the dev. server the following error is returned (54) Connection reset by peer. after clicking the select button.
protected void RadAnswers_ItemCommand(object sender,GridCommandEventArgs e)
{
if (e.CommandName == RadGrid.EditCommandName)
{
CreditLifeManager.AnswerID = Convert.ToInt64(RadGridQuestionnaire.SelectedItems[0].OwnerTableView.DataKeyValues[RadGridQuestionnaire.SelectedItems[0].ItemIndex]["AnswerID"]);Response.Redirect("MaintenancePortal/EvaluateQuestionnaireSection1.aspx");
}
}
Dev. server is running Windows Server 2003 and running IIS7.5.Can anyone asssist me on this issue or i'm missing to set configuration.
Any advice will be greatly appreciated
Thanks in advance