Response.Write传值的问题
代码如下:
string strkeywords = txtSearch.Text.ToString();
//Response.Redirect( "~/Search.aspx?keywords=strkeywords ", "_blank ");//这样写不行, 不能在新窗口中打开。
Response.Write( " <script> window.open( 'Search.aspx?keywords= <%=strkeywords%> ') </script ");//这样写又不能把变量值传过去。
我应怎么写?
------解决方案--------------------Response.Write( " <script> window.open( 'Search.aspx?keywords= "+ strkeywords +
" ') </script ");