This is a migrated thread and some comments may be shown as answers.

Navigate to another pager when select button is clicked

1 Answer 97 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Xolile
Top achievements
Rank 1
Xolile asked on 14 Dec 2010, 03:12 PM
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.

 

 

 

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


1 Answer, 1 is accepted

Sort by
0
Radoslav
Telerik team
answered on 20 Dec 2010, 09:15 AM
Hi Xolile,

Please check out the following links which elaborate on the same matter.
http://forums.iis.net/p/1146270/1879046.aspx#1879046
http://groups.google.com/group/microsoft.public.windows.server.general/browse_thread/thread/d93d65d87076a6a1/
http://toostep.com/question/getting-error-error-54-connection-reset-by-peer

Also if you use the ajax into your application I suggest you to use the Redirect() method of RadAjaxManager or RadAjaxPanel. More information you could find on the following link:
http://www.telerik.com/help/aspnet-ajax/ajxredirectingtoanotherpage.html

Kind regards,
Radoslav
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Grid
Asked by
Xolile
Top achievements
Rank 1
Answers by
Radoslav
Telerik team
Share this question
or