Thursday, 7 April 2016

How to bind Dropdownlist in Gridview Rowdatabound Using Asp.Net C#

Bind Dropdownlist in Gridview Rowdatabound Display Some Details in Gridview but we need list of values show to the user on gridview we bind the inside of gridview Dropdownlist using RoeDataBound event method Asp.Net C#. DEMO                    ...

Gmail Error The SMTP server requires a secure connection or the client was not authenticated

No comments    
categories: , ,
The SMTP server requires a secure connection or the client was not authenticated Got this  errors  means that Gmail has blocked your application . but username and password is correct you will do below like this  Go to below link https://www.google.com/settings/security/lesssecureapps Turn...

Add a Confirm delete option in ASP.Net Display multiple details in Gridview we want to delete some row before confirmation messahe open confirm delete that is onclientclick event Using Asp.Net C#. DEMO HTML CODING  <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">     <div align="center">     <table         <tr><td>&nbsp;</td><td>             <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" OnRowDeleting="GridView1_RowDeleting">                 <Columns>                     <asp:TemplateField HeaderText="Action" ShowHeader="False">                         <ItemTemplate>            <asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete"                                OnClientClick="return...