WCF and HTTP Error 404.3
Once you create a WCF Service from Visual Studio 2008 and after publishing to IIS, when you browse your Service, you will receive HTTP 404.3 Error. But you will not find any discrepancies in IIS…
Mission to unlock the mysteries of the Code verse
Once you create a WCF Service from Visual Studio 2008 and after publishing to IIS, when you browse your Service, you will receive HTTP 404.3 Error. But you will not find any discrepancies in IIS…
This post has reference to part one of this Article. Create a new Class with the name “MyLinq”. We are going to use the DataContextFactory Class which we created in Part One. Also assume in…
XElement represents an XML element. This post will describe about how to convert Dictionary to XML Format. Assume you want the XML to be in the following format, <paramlist><param><key>1</key><value>100</value></param><param><key>2</key><value>150</value></param></paramlist> The Dictionary is having <String, String>…
LINQ to SQL is a component of the .NET Framework version 3.5. Click to learn more about LINQ to SQL First of all, in your Project or Website, add a new item from the “LINQ to…
Assume we need to pass certain Variable content between html or aspx pages, often the Request object of QueryString is used. QueryStrings are combination of {key=value} pairs joined by ‘&’ and added to the html…
Assume our requirement is to send email from sender@gmail.com to receiver@gmail.com. Here we are going to use the configuration settings of Gmail SMTP mail server. Click here to get the Details of Gmail SMTP Mail…
Assume you have a XML file with the following format. <paramlist><param><key>1</key><value>100</value></param><param><key>2</key><value>150</value></param></paramlist>Include the following Namespaces using System.Collections.Generic;using System.Xml.Linq; Assume your requirement is to read data from XML file and use the data in your project for…
Web Developing for mobile is not the same as developing a website for PCs. I have summarized some tips which might help any beginner which i have found during Mobile Web Development. px to em…
Lets assume our requirement is to create a Data Table and convert it to XML format. Use the following block code for your purpose. DataSet myDS = new DataSet(); DataTable dtMyTable = new DataTable(“preview”); DataColumn…
Open the crystal report you have just created in your project, and from the Field Explorer -> Formula Fields, right click and create Two new Formula Field Variables, lets name it as “parameter1” and “parameter2”…