Get link Facebook X Pinterest Email Other Apps July 21, 2012 To create favicon online: http://favicon.htmlkit.com/favicon/ Get link Facebook X Pinterest Email Other Apps Comments
July 25, 2012 Export gridview into excel pdf csv http://www.aspsnippets.com/ Articles/Print-functionality- in-ASP.Net- GridView -control. aspx http://www.aspsnippets.com/ Articles/Export- GridView -To- Word-Excel-PDF-CSV-Formats-in- ASP.Net.aspx Read more
March 05, 2013 How to insert multiple rows from c# table to sql database table:- Frontend: <asp:Button ID="Button2" runat="server" Text="Create Table" onclick="Button2_Click" /> <asp:GridView ID="gveg" runat="server"> </asp:GridView> Backend C#: protected void Button2_Click(object sender, EventArgs e) { // // Here we create a DataTable with four columns. // DataTable temptable = new DataTable(); temptable.Columns.Add("ProductID", typeof(string)); temptable.Columns.Add("RelatedProductID", typeof(string)); temptable.Columns.Add("IsActive", typeof(string)); foreach (ListItem item in ListBox1.Items) { if (item.Selected) { // // Here we add five DataRows. // temptable.Rows.Add(1, 1, 1); } Read more
How to encrypt the password in web.config when we are providing the connection string in web.config file May 21, 2017 https://www.aspsnippets.com/Articles/Encrypt-and-Decrypt-Connection-Strings-in-WebConfig-file-in-ASPNet.aspx https://www.codeproject.com/Tips/795135/Encrypt-ConnectionString-in-Web-Config Read more
Comments
Post a Comment