<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Programming in almost language</title>
	<atom:link href="http://praveensunsetpoint.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://praveensunsetpoint.wordpress.com</link>
	<description>Thi s is the site where you may share your knowledge and experience to eachother..</description>
	<lastBuildDate>Thu, 22 Oct 2009 19:57:15 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Write XML file through C# by Umaid</title>
		<link>http://praveensunsetpoint.wordpress.com/2008/02/11/write-xml-file-through-c/#comment-300</link>
		<dc:creator>Umaid</dc:creator>
		<pubDate>Thu, 22 Oct 2009 19:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=8#comment-300</guid>
		<description>Hi Praveen,

I am ew to xml scripting. Actually I am testing your above code in Windows application but it is showing me some errors, so can u please help.

I am enclosing my code as:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml;
using Microsoft.SqlServer;

namespace XMLCheck1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
    
    private void Form1_Load(object sender, EventArgs e)
        {
                try 
                 {
                TextBox _text1 = new TextBox();
                //_text1.ID = &quot;name&quot;;
                _text1.Enabled = true;

                //Form1.Con.Add(_text1);

                } 
                catch(Exception err) {

                }
                
        }
               
        protected void Button1_Click(object sender, EventArgs e)
                {

                try 
                {
                    //string text = Request[&quot;name&quot;];
                //XmlDataDocument sourceXML = new XmlDataDocument();
                string xmlFile = Server.MapPath(&quot;DVDlist1.xml&quot;);
                //create a XML file is not exist
                System.Xml.XmlTextWriter writer = new System.Xml.XmlTextWriter(xmlFile, null);
                //starts a new document
                writer.WriteStartDocument();
                //write comments
                writer.WriteComment(&quot;Commentss: XmlWriter Test Program&quot;);
                writer.Formatting = System.Xml.Formatting.Indented;  
                writer.WriteStartElement(&quot;DVDlist&quot;);
                writer.WriteStartElement(&quot;DVD&quot;);
                writer.WriteAttributeString(&quot;ID&quot;, &quot;textBox1.Text&quot;);
                //write some simple elements
                writer.WriteElementString(&quot;Title&quot;, &quot;Umaid Saleem&quot;);
                writer.WriteStartElement(&quot;Starring&quot;);
                writer.WriteElementString(&quot;Actor&quot;, &quot;Rock Star&quot;);
                writer.WriteEndElement();
                writer.WriteEndElement();
                writer.WriteEndElement();
                writer.Close();
                } catch (Exception e1) 
                { 
                  Form1.Response.Write(e1);
                }
                
        }

It is show error at Server.MapPath(&quot;Filename.xml&quot;);
as the name server doesn&#039;t exist in current context

My Form doesn&#039;t contain a definition for response as
Form1.Response.Write(e1);</description>
		<content:encoded><![CDATA[<p>Hi Praveen,</p>
<p>I am ew to xml scripting. Actually I am testing your above code in Windows application but it is showing me some errors, so can u please help.</p>
<p>I am enclosing my code as:</p>
<p>using System;<br />
using System.Collections.Generic;<br />
using System.ComponentModel;<br />
using System.Data;<br />
using System.Drawing;<br />
using System.Linq;<br />
using System.Text;<br />
using System.Windows.Forms;<br />
using System.Xml;<br />
using Microsoft.SqlServer;</p>
<p>namespace XMLCheck1<br />
{<br />
    public partial class Form1 : Form<br />
    {<br />
        public Form1()<br />
        {<br />
            InitializeComponent();<br />
        }</p>
<p>    private void Form1_Load(object sender, EventArgs e)<br />
        {<br />
                try<br />
                 {<br />
                TextBox _text1 = new TextBox();<br />
                //_text1.ID = &#8220;name&#8221;;<br />
                _text1.Enabled = true;</p>
<p>                //Form1.Con.Add(_text1);</p>
<p>                }<br />
                catch(Exception err) {</p>
<p>                }</p>
<p>        }</p>
<p>        protected void Button1_Click(object sender, EventArgs e)<br />
                {</p>
<p>                try<br />
                {<br />
                    //string text = Request["name"];<br />
                //XmlDataDocument sourceXML = new XmlDataDocument();<br />
                string xmlFile = Server.MapPath(&#8220;DVDlist1.xml&#8221;);<br />
                //create a XML file is not exist<br />
                System.Xml.XmlTextWriter writer = new System.Xml.XmlTextWriter(xmlFile, null);<br />
                //starts a new document<br />
                writer.WriteStartDocument();<br />
                //write comments<br />
                writer.WriteComment(&#8220;Commentss: XmlWriter Test Program&#8221;);<br />
                writer.Formatting = System.Xml.Formatting.Indented;<br />
                writer.WriteStartElement(&#8220;DVDlist&#8221;);<br />
                writer.WriteStartElement(&#8220;DVD&#8221;);<br />
                writer.WriteAttributeString(&#8220;ID&#8221;, &#8220;textBox1.Text&#8221;);<br />
                //write some simple elements<br />
                writer.WriteElementString(&#8220;Title&#8221;, &#8220;Umaid Saleem&#8221;);<br />
                writer.WriteStartElement(&#8220;Starring&#8221;);<br />
                writer.WriteElementString(&#8220;Actor&#8221;, &#8220;Rock Star&#8221;);<br />
                writer.WriteEndElement();<br />
                writer.WriteEndElement();<br />
                writer.WriteEndElement();<br />
                writer.Close();<br />
                } catch (Exception e1)<br />
                {<br />
                  Form1.Response.Write(e1);<br />
                }</p>
<p>        }</p>
<p>It is show error at Server.MapPath(&#8220;Filename.xml&#8221;);<br />
as the name server doesn&#8217;t exist in current context</p>
<p>My Form doesn&#8217;t contain a definition for response as<br />
Form1.Response.Write(e1);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ZOPE XML Methods by Sandra R</title>
		<link>http://praveensunsetpoint.wordpress.com/2008/10/01/zope-xml-methods/#comment-292</link>
		<dc:creator>Sandra R</dc:creator>
		<pubDate>Wed, 09 Sep 2009 16:40:29 +0000</pubDate>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=72#comment-292</guid>
		<description>Hi! I was surfing and found your blog post... nice! I love your blog.  :) Cheers! Sandra. R.</description>
		<content:encoded><![CDATA[<p>Hi! I was surfing and found your blog post&#8230; nice! I love your blog.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cheers! Sandra. R.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by learnpythoncode</title>
		<link>http://praveensunsetpoint.wordpress.com/about/#comment-291</link>
		<dc:creator>learnpythoncode</dc:creator>
		<pubDate>Fri, 04 Sep 2009 09:25:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-291</guid>
		<description>Hi Praveen ,
Nice work,,Keep it Up,</description>
		<content:encoded><![CDATA[<p>Hi Praveen ,<br />
Nice work,,Keep it Up,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Read Configuration Settings of Web.config using Javascript by mfchiu</title>
		<link>http://praveensunsetpoint.wordpress.com/2008/04/05/read-configuration-settings-of-webconfig-using-javascript/#comment-290</link>
		<dc:creator>mfchiu</dc:creator>
		<pubDate>Thu, 03 Sep 2009 14:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=34#comment-290</guid>
		<description>var X = &#039;&#039;
alert(X);</description>
		<content:encoded><![CDATA[<p>var X = &#8221;<br />
alert(X);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on django-registration and django-profile save together at once by Asinox</title>
		<link>http://praveensunsetpoint.wordpress.com/2009/04/21/django-registration-and-django-profile-save-together-at-once/#comment-289</link>
		<dc:creator>Asinox</dc:creator>
		<pubDate>Mon, 31 Aug 2009 01:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://praveensunsetpoint.wordpress.com/?p=169#comment-289</guid>
		<description>ejej im sorry man :) im fixed :D

Thanks</description>
		<content:encoded><![CDATA[<p>ejej im sorry man <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  im fixed <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
