Posted on: 5/26/2014 7:34:40 PM | Views : 303

Hi
I need when a user search in the Master Page, the search results are opened on the new search.aspx page.
On my search.aspx I'm using a Grid View to display search results:
<asp:GridView ID="GridView1" runat="server" DataSourceID="SqlDataSource1" AutoGenerateColumns="False" Width="735px"> <Columns> <asp:BoundField DataField="title" HeaderText="title" SortExpression="title"></asp:BoundField> <asp:BoundField DataField="fcontents" HeaderText="fcontents" SortExpression="fcontents"></asp:BoundField> </Columns> </asp:GridView> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:minusConnectionString %>" Se ...

Go to the complete details ...