amitbindhast.blogspot.com
Bindhast Amit: July 2008
http://amitbindhast.blogspot.com/2008_07_01_archive.html
Tuesday, July 15, 2008. How to care for wife. Links to this post. Subscribe to: Posts (Atom). How to care for wife. View my complete profile. H1B Interview Sample Questions and Answers.
amit4ads.blogspot.com
.Net Codes: Export GridView to Excel
http://amit4ads.blogspot.com/2008/08/export-gridview-to-excel.html
Net Codes, SQL Server, AJAX.NET, Javascript. Saturday, August 9, 2008. Export GridView to Excel. Here is the complete code to Export GridView to Excel:. System.Web.Security;. System.Web.UI;. System.Web.UI.WebControls;. System.Web.UI.WebControls.WebParts;. System.Web.UI.HtmlControls;. System.Data.SqlClient;. ExportGridView : System.Web.UI.Page. Sender, EventArgs e). GridView1.DataSource = BindData();. Trusted Connection=true"; }. Query = "SELECT * FROM Categories";. SqlConnection myConnection = new. 24 ye...
amit4ads.blogspot.com
.Net Codes: August 2008
http://amit4ads.blogspot.com/2008_08_01_archive.html
Net Codes, SQL Server, AJAX.NET, Javascript. Saturday, August 9, 2008. Create an RSS feed using ASP.NET 2.0. Using System.Data.SqlClient;. Using System.Text;. Using System.Xml;. Clear any previous output from the buffer. Response.ContentType = "text/xml";. XmlTextWriter xtwFeed = new XmlTextWriter(Response.OutputStream, Encoding.UTF8);. The mandatory rss tag. XtwFeed.WriteAttributeString("version", "2.0");. The channel tag contains RSS feed details. Objects needed for connecting to the SQL database.
amit4ads.blogspot.com
.Net Codes: Encrypting Cookie Data with ASP.NET
http://amit4ads.blogspot.com/2008/08/encrypting-cookie-data-with-aspnet.html
Net Codes, SQL Server, AJAX.NET, Javascript. Saturday, August 9, 2008. Encrypting Cookie Data with ASP.NET. Overview of Cryptography in .NET. What Is Encryption Exactly? There are two basic approaches for handling data encryption: symmetric (or private key) and asymmetric (or public key). In symmetric cryptography techniques, both sides of the data exchange (the encryptor and decryptor) must have access to a single secret private key. For our cookie encryption purposes, we will use the symmetric approach...
amitbindhast.blogspot.com
Bindhast Amit: How to care for wife
http://amitbindhast.blogspot.com/2008/07/blog-post.html
Tuesday, July 15, 2008. How to care for wife. July 25, 2008 at 4:37 AM. Somebody should take care of her. July 25, 2008 at 4:39 AM. He should learn some more techniques.to take care. July 25, 2008 at 4:44 AM. Subscribe to: Post Comments (Atom). How to care for wife. View my complete profile. Temporary Post Used For Theme Detection (4c8bc4a1-69db-4706-9fc5-eac6cbd96c45 - 3bfe001a-32de-4114-a6b4-4005b770f6d7).
amit4ads.blogspot.com
.Net Codes: Encrypting Configuration Information in ASP.NET 2.0 Applications
http://amit4ads.blogspot.com/2008/08/encrypting-configuration-information-in.html
Net Codes, SQL Server, AJAX.NET, Javascript. Saturday, August 9, 2008. Encrypting Configuration Information in ASP.NET 2.0 Applications. Protecting configuration sections in ASP.NET 2.0 uses the provider model, which allows for any implementation to be seamlessly plugged into the API. The .NET Framework 2.0 ships with two built-in providers for protecting configuration sections:. The Windows Data Protection API (DPAPI) Provider (DataProtectionConfigurationProvider) -. Section.SectionInformation.U...This ...
amit4ads.blogspot.com
.Net Codes: ASP.NET State Management
http://amit4ads.blogspot.com/2008/08/aspnet-state-management.html
Net Codes, SQL Server, AJAX.NET, Javascript. Saturday, August 9, 2008. Web pages rarely stand alone. Applications almost always need to track users who visit multiple pages within a Web site, whether to provide personalization, store information about a user, or track usage for reporting purposes. Using Client-Side State Management. ASPNET uses view state to track values in controls. You can add custom values to view state, too. Cookies store a value in the user’s browser that the browser sends wit...