amitmetkar.blogspot.com
.Net_for_Amit: H1B Interview Sample Questions & Answers
http://amitmetkar.blogspot.com/2009/01/h1-interview-sample-questions-answers.html
Work to Live, but Don't Forget to Live While Working. Saturday, January 3, 2009. H1B Interview Sample Questions and Answers. H1B Interview Sample Questions and Answers. Q: Good morning. How are you doing today? A: Good morning. I am fine, and how about you? Q: What is the purpose of your trip? A: Employment in the US. Q: When was your passport issued? Q: Is this your first passport? Q: Have you ever been to the US? Q: Have you ever been here (to the consulate) before? Q: Why would you come back to India?
amitmetkar.blogspot.com
.Net_for_Amit: Encrypting Cookie Data with ASP.NET
http://amitmetkar.blogspot.com/2008/07/encrypting-cookie-data-with-aspnet.html
Work to Live, but Don't Forget to Live While Working. Wednesday, July 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 ...
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...
amitmetkar.blogspot.com
.Net_for_Amit: Create an RSS feed using ASP.NET 2.0
http://amitmetkar.blogspot.com/2008/07/create-rss-feed-using-aspnet-20.html
Work to Live, but Don't Forget to Live While Working. Friday, July 25, 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.
amitmetkar.blogspot.com
.Net_for_Amit: Encrypting Configuration Information in ASP.NET 2.0 Applications
http://amitmetkar.blogspot.com/2008/07/encrypting-configuration-information-in.html
Work to Live, but Don't Forget to Live While Working. Wednesday, July 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.SectionInformati...
amitmetkar.blogspot.com
.Net_for_Amit: Amit.Amit..Amit...: Encrypting Cookie Data with ASP.NET
http://amitmetkar.blogspot.com/2008/07/amitamitamit-encrypting-cookie-data.html
Work to Live, but Don't Forget to Live While Working. Friday, July 25, 2008. AmitAmit.Amit.: Encrypting Cookie Data with ASP.NET. AmitAmit.Amit.: Encrypting Cookie Data with ASP.NET. Friday, July 25, 2008. Subscribe to: Post Comments (Atom). Net for Amit: Creating Custom Web Controls. Net for Amit: Export GridView to Excel. Net for Amit: Encrypting Configuration Informatio. Net for Amit: Dot.NET/C#/VB.NET/ASP.NET Interview. AmitAmit.Amit.: Encrypting Cookie Data with AS. SQL Server Interview Questions.
amitmetkar.blogspot.com
.Net_for_Amit: US H1B VISA Interview Set - 3
http://amitmetkar.blogspot.com/2009/01/us-h1b-visa-interview-set-3.html
Work to Live, but Don't Forget to Live While Working. Saturday, January 3, 2009. US H1B VISA Interview Set - 3. 1 What about your responsibilities and for which client you are going to working for, Can you explain me in detail? 2 What is your highest education level? 3 Who is the President/CEO of US company? 4 Do you have any project details from new company? 5 Can You Show Me Tax Returns. 6 Can I have your file please? 7 In which technology working your petitioner company? 9 Can you tell me what is XML?
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.