[NUnitAsp-devl] Re: [Nunitasp-users] "The parameter is incorrect" during form submission
Brought to you by:
jlittle82
From: Cory F. <Cor...@mo...> - 2005-04-24 19:39:00
|
Cory Foy wrote: > DisplayFavoritesTest.TestWebSubmitFavorite : > NUnit.Extensions.Asp.HttpClient+BadStatusException : Server returned > error (status code: 400). HTML copied to standard output. It turns out that the issue was that the Response.Redirect I was doing in the Button's click handler was causing it fo NUnitASP only, because I have QueryString parameters in it. Response.Redirect("MyPage.aspx?t=1&b=2"); Will cause the request to fail when run in NUnitASP with the 400 code above. Is this inline with other people's experience? Cory |