У меня есть сетка на моей странице asp.net. сетка, имеющая 3 столбца с гиперссылками. обе ссылки работают нормально. но никто не перенаправляет нужную страницу. Я пробовал в разных браузерах. но получил другую ошибку: как
In Mozilla Firefox :The page isn't redirecting properly
description In Mozilla Firefox :
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept
cookies.
In Google chrome : `This webpage has a redirect loop`
description In Google chrome :
The webpage at http://myserver:425/(S(c0kr2xuftxiwhm25cm4vjg45))/mypage.aspx?type=2&userId=8 has resulted in too many redirects. Clearing your cookies for this site or allowing third-party cookies may fix the problem. If not, it is possibly a server configuration issue and not a problem with your computer.
так как я пробовал множество решений по сети, как я пытался очистить куки из браузеров, добавил
<sessionState
cookieless="false" // True also tried
timeout="10">
</sessionState>
в файле веб-конфигурации, но проблема там та же. Я проверил, что ссылка правильно перенаправляет нужную страницу. Я имею в виду, я проверил правописание моей ссылки, это прекрасно. что еще я должен попытаться решить? где я должен делать ошибку?
<ItemTemplate>
<a href="mypage.aspx?type=2&userId=<%#Eval("userId") %>">Go to my page </a>
</ItemTemplate>