Computer Science, asked by mohdsahban6776, 11 months ago

Write a program to fetch data of employees on a web page and display it i. Grid view

Answers

Answered by Ranauk456
4

<form id="form1" runat="server">  

   <div>    

  <table>  

   <tr>  

   <td>    

      Search  

       </td>  

       <td>  

       <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>  

       </td>  

       <td>    

       <asp:Button ID="Button1" runat="server" Text="Go" onclick="Button1_Click" />  

       </td>  

       </tr>  

</table>  

<table><tr><td><p><asp:Label ID="Label2" runat="server" Text="label"></asp:Label>  </p></td></tr></table>  

<asp:GridView ID="GridView1" runat="server" >  

   </asp:GridView>    

   </div>  

</form>  

Similar questions