passing parameter
-
i have 7 parameter and want to send them to another page and use as where clues,i used query string but do note work. how can i do. my code is: var query=from p in mytable where """ response.redirect["query"] """; i want use query string here.
-
i have 7 parameter and want to send them to another page and use as where clues,i used query string but do note work. how can i do. my code is: var query=from p in mytable where """ response.redirect["query"] """; i want use query string here.
If I understand you correctly, you want to take the 7 parameters that were passed in the querystring and resend them to the new page? If so, you need review your syntax because it's not doing anything close to what your intending.... 1) what is mytable? how does that relate to querystring variables? 2) link query returns an IEnumerable(of ???) list. You have a redirect in the where clause so why kind of response do you think you'll be getting when it needs to return an ienumerable(of ???) list? 3) where is any mention of request.querystring to go through it's dictionary?
'Never argue with an idiot; they'll drag you down to their level and beat you with experience.' ~ anonymous