<?xml version="1.0" encoding="UTF-8" standalone="no"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:gd="http://schemas.google.com/g/2005" xmlns:georss="http://www.georss.org/georss" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-7137874081633356315</atom:id><lastBuildDate>Thu, 26 Sep 2024 01:46:05 +0000</lastBuildDate><title>ASP.NET, C#, SQL, XML, Jquery, Json, Mvc, Entity Framework, Azure.</title><description>A blog for dot net developers, caters to various related technologies.</description><link>http://helpindotnet.blogspot.com/</link><managingEditor>noreply@blogger.com (Unknown)</managingEditor><generator>Blogger</generator><openSearch:totalResults>7</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle>A blog for dot net developers, caters to various related technologies.</itunes:subtitle><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-6586227751805450945</guid><pubDate>Wed, 07 May 2008 13:12:00 +0000</pubDate><atom:updated>2008-05-07T06:19:24.685-07:00</atom:updated><title>- Fetch XML (xmldatadocument)  from database</title><atom:summary type="text">This post shows you how to return XmlDataDocument from the database.This helps you to fetch the xml data created in sql and use in asp.net.If you are familiar how to get xml data from sql then this post helps you to fetch the xml data in XmlDataDocument.//Code Starts Here// http://helpindotnet.blogspot.com/// http://helpindotnet.wordpress.com public XmlDataDocument getauditnames(string prefixText</atom:summary><link>http://helpindotnet.blogspot.com/2008/05/fetch-xml-xmldatadocument-from-database.html</link><author>noreply@blogger.com (Unknown)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-4961507899665923445</guid><pubDate>Tue, 06 May 2008 08:39:00 +0000</pubDate><atom:updated>2008-05-06T01:50:46.632-07:00</atom:updated><title>- Unicode Characters</title><atom:summary type="text">ASCII does'nt recognizes the unicode character. Unicode code character are different from special character. For Ex: scientific characters like pi, pmu,...Unicode Character is :  Pi : ΠTry out with different unicode characters //Code starts herestatic void convertunicode()        {            string unicodeString = "This string contains the unicode character Pi(\u03a0)";            // Create two </atom:summary><link>http://helpindotnet.blogspot.com/2008/05/unicode-characters.html</link><author>noreply@blogger.com (Unknown)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-1570681539806488163</guid><pubDate>Mon, 05 May 2008 07:06:00 +0000</pubDate><atom:updated>2008-05-06T01:52:20.140-07:00</atom:updated><title>- Encode Decode XML Name</title><atom:summary type="text">While coding with XML Files, Sometimes you need to Encode and Decode the Xml Name.Here is the simplest method to encode the name XmlConvert.EncodeName(string).using System.Xml;namespace ConsoleApplication1{    class classEncodeDecodeXMLName{    static void encodedecode()        {            // Encode and decode a name with spaces.            Console.WriteLine(XmlConvert.ToByte("Some Name"));</atom:summary><link>http://helpindotnet.blogspot.com/2008/05/encode-decode-xml-name.html</link><author>noreply@blogger.com (Unknown)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-6731965987279794044</guid><pubDate>Fri, 02 May 2008 06:21:00 +0000</pubDate><atom:updated>2008-05-05T00:11:25.325-07:00</atom:updated><title>- Validate XML against Schema</title><atom:summary type="text">Here I will show you how to "Validate Xml against the provided Schema xsd".This is the simplest method to validate the xml from the given Schema xsdusing System.IO;using System.Xml;using System.Xml.Schema;using System.Data;using System.Web;namespace ConsoleApplication1{  class clsValidateXml  {public static string ErrorMessage="";static void validatexml()        {            //Physical path of </atom:summary><link>http://helpindotnet.blogspot.com/2008/05/here-i-will-show-you-how-to-validate.html</link><author>noreply@blogger.com (Unknown)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-1390206149611249473</guid><pubDate>Wed, 30 Apr 2008 05:55:00 +0000</pubDate><atom:updated>2008-05-05T00:11:34.848-07:00</atom:updated><title>- GZIP Compress a file using Asp.net and C#.</title><atom:summary type="text">Here I will show you the easiest way to compress and Decompress (Gzip) a file using Asp.net with c#.You can compress any file with this method.//Code Starts hereusing System;using System.Collections.Generic;using System.Text;using System.IO;using System.IO.Compression;/** http://helpindotnet.blogspot.com/*/namespace ConsoleApplication1{    class GZipTest    {        private const int buffer_size </atom:summary><link>http://helpindotnet.blogspot.com/2008/04/gzip-compress-file-using-aspnet-and-c.html</link><author>noreply@blogger.com (Unknown)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-809036117497780079</guid><pubDate>Tue, 29 Apr 2008 11:40:00 +0000</pubDate><atom:updated>2008-05-05T00:12:08.668-07:00</atom:updated><title>- Send mail using System.Net..Mail</title><atom:summary type="text">Send Mail Messages Using System.Net.Mail namespace (new in .net Framework Version 2.0) which provides classes that enable you to easily create and transmit e-mail messages.Asp.net c#:                 // Create a MailMessage object                MailMessage mm = new MailMessage();                // Define the sender and recipient                mm.From = new MailAddress(fromEmailAddress.Text, </atom:summary><link>http://helpindotnet.blogspot.com/2008/04/aspnet-c-send-mail-using-systemnetmail.html</link><author>noreply@blogger.com (Unknown)</author></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-7137874081633356315.post-6049046743752907055</guid><pubDate>Mon, 28 Apr 2008 11:46:00 +0000</pubDate><atom:updated>2008-05-05T00:12:15.920-07:00</atom:updated><title>- How to Dynamically Insert Javascript And CSS</title><atom:summary type="text">This is a short and sweet little tutorial to show you how to dynamically insert a new Javascript (or style sheet) into your web pagesFOR CSS...var headID = document.getElementsByTagName("head")[0];         var cssNode = document.createElement('link');cssNode.type = 'text/css';cssNode.rel = 'stylesheet';cssNode.href = 'FireFox.css';cssNode.media = 'screen';headID.appendChild(cssNode);FOR </atom:summary><link>http://helpindotnet.blogspot.com/2008/04/how-to-dynamically-insert-javascript.html</link><author>noreply@blogger.com (Unknown)</author></item></channel></rss>