Posted on: 2/21/2015 9:27:51 PM | Views : 690

i have a gridview which stores names of software and a button field. What i want to do is that by executing a query behind "open" linkbutton and the resulting answer which is a url from database, i want to navigate to that link which is stored in the variable. e.g: when i click open button i want to navigate to "www.google.com"
so far what i have coded is:
<asp:GridView ID="GridView2" runat="server" ShowHeaderWhenEmpty="True" AutoGenerateColumns="False" BackColor="White" BorderColor="#999999" BorderStyle="Solid" BorderWidth="1px" CellPadding="3" DataSourceID="softwares" ForeColor="Black" GridLines="Vertical" OnRowCommand="GridView2_RowCommand"> <AlternatingRowStyle BackColor="#CCCCCC" /> <Columns> <asp:BoundF ...

Go to the complete details ...