<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Bharath Radhekrishna &#187; 108 Situations</title>
	<atom:link href="http://onetidbit.wordpress.com/category/108-situations/feed/" rel="self" type="application/rss+xml" />
	<link>http://onetidbit.wordpress.com</link>
	<description>తెలుగు సాప్ట్ వేర్  ఇంజనీర్</description>
	<lastBuildDate>Mon, 21 Sep 2009 01:50:19 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='onetidbit.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/b53a668718997e5f296c495d82161531?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Bharath Radhekrishna &#187; 108 Situations</title>
		<link>http://onetidbit.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://onetidbit.wordpress.com/osd.xml" title="Bharath Radhekrishna" />
		<item>
		<title>Disabling some of the Textboxes in gridview edit</title>
		<link>http://onetidbit.wordpress.com/2009/05/04/disabling-some-of-the-textboxes-in-gridview-edit/</link>
		<comments>http://onetidbit.wordpress.com/2009/05/04/disabling-some-of-the-textboxes-in-gridview-edit/#comments</comments>
		<pubDate>Mon, 04 May 2009 09:20:28 +0000</pubDate>
		<dc:creator>onetidbit</dc:creator>
				<category><![CDATA[108 Situations]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[ASP.NET,C#]]></category>

		<guid isPermaLink="false">http://onetidbit.wordpress.com/?p=155</guid>
		<description><![CDATA[Situation: You need some text boxes disable when gridview is in edit mode.
=======
Solution:
======
1) Bind the Data without Sqldatasource Control
2) In Row Editing write the code:
       	protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)
    	{
      	  	GridView1.EditIndex = e.NewEditIndex;
     [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=155&subd=onetidbit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Situation: You need some text boxes disable when gridview is in edit mode.<br />
=======</p>
<p>Solution:<br />
======</p>
<p>1) Bind the Data without Sqldatasource Control<br />
2) In Row Editing write the code:</p>
<p>       	protected void GridView1_RowEditing(object sender, GridViewEditEventArgs e)<br />
    	{<br />
      	  	GridView1.EditIndex = e.NewEditIndex;<br />
        		gridbind();<br />
		TextBox tx_chdets = (TextBox)GridView1.Rows[e.NewEditIndex].FindControl(&#8220;TextBox1&#8243;);<br />
		tx_chdets.Readonly=true;</p>
<p>        }</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onetidbit.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onetidbit.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onetidbit.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onetidbit.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onetidbit.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onetidbit.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onetidbit.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onetidbit.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onetidbit.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onetidbit.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=155&subd=onetidbit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://onetidbit.wordpress.com/2009/05/04/disabling-some-of-the-textboxes-in-gridview-edit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8fbf98ae0461d7ea51945d91b92f8ebd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Radhe</media:title>
		</media:content>
	</item>
		<item>
		<title>How to invoke a user defined event in the controls of Gridview</title>
		<link>http://onetidbit.wordpress.com/2009/02/24/how-to-invoke-a-user-defined-event-in-the-controls-of-gridview/</link>
		<comments>http://onetidbit.wordpress.com/2009/02/24/how-to-invoke-a-user-defined-event-in-the-controls-of-gridview/#comments</comments>
		<pubDate>Tue, 24 Feb 2009 05:07:33 +0000</pubDate>
		<dc:creator>onetidbit</dc:creator>
				<category><![CDATA[108 Situations]]></category>

		<guid isPermaLink="false">http://onetidbit.wordpress.com/?p=134</guid>
		<description><![CDATA[How to invoke a user defined event in the controls of Gridview
=============================
1) In aspx Take a gridview having one of the template fields i.e Item Template as LinkButton
&#60;asp:TemplateField HeaderText=&#8221;Folio No&#8221;&#62;
&#60;EditItemTemplate&#62;
&#60;asp:TextBox ID=&#8221;TextBox1&#8243; runat=&#8221;server&#8221; Text=&#8217;&#60;%# Bind(&#8220;Folio_no&#8221;) %&#62;&#8217;&#62;&#60;/asp:TextBox&#62;
&#60;/EditItemTemplate&#62;
&#60;ItemTemplate&#62;
&#60;asp:LinkButton ID=&#8221;Label2&#8243; runat=&#8221;server&#8221; Text=&#8217;&#60;%# Bind(&#8220;Folio_no&#8221;) %&#62;&#8217; OnClick=&#8221;click&#8221; &#62;&#60;/asp:LinkButton&#62;
&#60;/ItemTemplate&#62;
&#60;/asp:TemplateField&#62;
2) In Code-behind Page:
protected void click(object sender, EventArgs e)
{
LinkButton lb = (LinkButton)sender;
GridViewRow gvr = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=134&subd=onetidbit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>How to invoke a user defined event in the controls of Gridview<br />
=============================</p>
<p>1) In aspx Take a gridview having one of the template fields i.e Item Template as LinkButton</p>
<p>&lt;asp:TemplateField HeaderText=&#8221;Folio No&#8221;&gt;<br />
&lt;EditItemTemplate&gt;<br />
&lt;asp:TextBox ID=&#8221;TextBox1&#8243; runat=&#8221;server&#8221; Text=&#8217;&lt;%# Bind(&#8220;Folio_no&#8221;) %&gt;&#8217;&gt;&lt;/asp:TextBox&gt;<br />
&lt;/EditItemTemplate&gt;<br />
&lt;ItemTemplate&gt;<br />
&lt;asp:LinkButton ID=&#8221;Label2&#8243; runat=&#8221;server&#8221; Text=&#8217;&lt;%# Bind(&#8220;Folio_no&#8221;) %&gt;&#8217; OnClick=&#8221;click&#8221; &gt;&lt;/asp:LinkButton&gt;<br />
&lt;/ItemTemplate&gt;<br />
&lt;/asp:TemplateField&gt;</p>
<p>2) In Code-behind Page:</p>
<p>protected void click(object sender, EventArgs e)<br />
{<br />
LinkButton lb = (LinkButton)sender;<br />
GridViewRow gvr = (GridViewRow)lb.Parent.Parent;</p>
<p>LinkButton lnk_fno = (LinkButton)gvr.FindControl(&#8220;Label2&#8243;);<br />
}</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onetidbit.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onetidbit.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onetidbit.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onetidbit.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onetidbit.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onetidbit.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onetidbit.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onetidbit.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onetidbit.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onetidbit.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=134&subd=onetidbit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://onetidbit.wordpress.com/2009/02/24/how-to-invoke-a-user-defined-event-in-the-controls-of-gridview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8fbf98ae0461d7ea51945d91b92f8ebd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Radhe</media:title>
		</media:content>
	</item>
		<item>
		<title>Dropdownlist in gridview</title>
		<link>http://onetidbit.wordpress.com/2009/02/21/dropdownlist-in-gridview/</link>
		<comments>http://onetidbit.wordpress.com/2009/02/21/dropdownlist-in-gridview/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 09:01:30 +0000</pubDate>
		<dc:creator>onetidbit</dc:creator>
				<category><![CDATA[108 Situations]]></category>

		<guid isPermaLink="false">http://onetidbit.wordpress.com/2009/02/21/dropdownlist-in-gridview/</guid>
		<description><![CDATA[Hi All,
The situation is Dropdownlist in Gridview.
While displaying the summary or reports we will use a Label for a particular column.
But in edit mode it must open in dropdownlist with selected Values as in the previous static mode.
I will explain clearly:
There is a table in database Months_TBL.
which contains 12 months.
1) First we must bind this [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=122&subd=onetidbit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi All,</p>
<p>The situation is Dropdownlist in Gridview.</p>
<p>While displaying the summary or reports we will use a Label for a particular column.<br />
But in edit mode it must open in dropdownlist with selected Values as in the previous static mode.</p>
<p>I will explain clearly:</p>
<p>There is a table in database Months_TBL.<br />
which contains 12 months.</p>
<p>1) First we must bind this with a datasource.<br />
2) Attach this datasource to dropdown list.In the dropdownlist the query will be look like this<br />
   Select mid,month_name from Months_TBL.<br />
3)Take a Template field for months which looks like this:</p>
<p>                     &lt;asp:DropDownList CssClass=&#8221;textb&#8221; ID=&#8221;ddl1&#8243; runat=&#8221;server&#8221;  DataSourceID=&#8221;SqlDataSource1&#8243; DataTextField=&#8221;month_name&#8221; DataValueField=&#8221;mid&#8221; AppendDataBoundItems=true selectedvalue=&#8221;  &gt;</p>
<p>                     &lt;asp:Label ID=&#8221;Label1&#8243; runat=&#8221;server&#8221; Text=&#8221;&gt;</p>
<p>4) So While displaying if it shows February while we click edit the dropdown list will come as selected value as &#8220;February&#8221;.</p>
<p>Is it nice.</p>
<p>But carefully see that we have used &#8220;selectedvalue&#8221; property.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onetidbit.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onetidbit.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onetidbit.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onetidbit.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onetidbit.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onetidbit.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onetidbit.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onetidbit.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onetidbit.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onetidbit.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=122&subd=onetidbit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://onetidbit.wordpress.com/2009/02/21/dropdownlist-in-gridview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8fbf98ae0461d7ea51945d91b92f8ebd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Radhe</media:title>
		</media:content>
	</item>
		<item>
		<title>Place vb and cs files together in App_Code folder</title>
		<link>http://onetidbit.wordpress.com/2008/11/25/place-vb-and-cs-files-together-in-app_code-folder/</link>
		<comments>http://onetidbit.wordpress.com/2008/11/25/place-vb-and-cs-files-together-in-app_code-folder/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 09:39:57 +0000</pubDate>
		<dc:creator>onetidbit</dc:creator>
				<category><![CDATA[108 Situations]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://onetidbit.wordpress.com/?p=83</guid>
		<description><![CDATA[Sometimes while using class files in asp.net we will face the situation where we want to place both Vb and Cs class files.The simple solution is:
1) First make two folders in App_code with foldernames as 1)CSCode 2)VBCode
2) Modify the Web.conig with following code:
    &#60;compilation debug="false"&#62;
    &#60;codeSubDirectories&#62;
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=83&subd=onetidbit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Sometimes while using class files in asp.net we will face the situation where we want to place both Vb and Cs class files.The simple solution is:</p>
<p>1) First make two folders in App_code with foldernames as 1)CSCode 2)VBCode</p>
<p>2) Modify the Web.conig with following code:</p>
<pre class="libCScode" style="white-space:pre-wrap;">    <strong>&lt;compilation debug="false"&gt;
    &lt;codeSubDirectories&gt;
        &lt;add directoryName="VBCode" /&gt;
        &lt;add directoryName="CSCode" /&gt;
    &lt;/codeSubDirectories&gt;</strong>
<strong>&lt;/compilation&gt;</strong>

Thats all.....</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onetidbit.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onetidbit.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onetidbit.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onetidbit.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onetidbit.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onetidbit.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onetidbit.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onetidbit.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onetidbit.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onetidbit.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=83&subd=onetidbit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://onetidbit.wordpress.com/2008/11/25/place-vb-and-cs-files-together-in-app_code-folder/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8fbf98ae0461d7ea51945d91b92f8ebd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Radhe</media:title>
		</media:content>
	</item>
		<item>
		<title>Email sending problem from Godaddy server solved in ASP.NET (108 situations)</title>
		<link>http://onetidbit.wordpress.com/2008/08/11/email-sending-problem-from-godaddy-server-solved-in-aspnet-108-situations/</link>
		<comments>http://onetidbit.wordpress.com/2008/08/11/email-sending-problem-from-godaddy-server-solved-in-aspnet-108-situations/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 12:36:27 +0000</pubDate>
		<dc:creator>onetidbit</dc:creator>
				<category><![CDATA[108 Situations]]></category>
		<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://onetidbit.wordpress.com/?p=72</guid>
		<description><![CDATA[Hello  everybody. When I am trying to send an email with HTML format the values are coming from database i felt problem with godaddy server.
నేను ఒకసారి GoDaddy ద్వారా ఈమెయిలు పంపిస్తుంటే చాలా ప్రొబ్లెంస్ వచ్చాయి
నేను వాటిని పరిశోధించి చివరికి చిన్న సమాధానం కనుకునా ఏమైనా సందేహం వుంటే మెయిల్ చెయ్యండి 
Email; radhek@gmail.com
To solve that we must add relay hosting.
I&#8217;d just like [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=72&subd=onetidbit&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hello  everybody. When I am trying to send an email with HTML format the values are coming from database i felt problem with godaddy server.</p>
<h3><strong>నేను ఒకసారి GoDaddy ద్వారా ఈమెయిలు పంపిస్తుంటే చాలా ప్రొబ్లెంస్ వచ్చాయి<br />
నేను వాటిని పరిశోధించి చివరికి చిన్న సమాధానం కనుకునా ఏమైనా సందేహం వుంటే మెయిల్ చెయ్యండి </strong></h3>
<h3>Email; radhek@gmail.com</h3>
<p>To solve that we must add relay hosting.</p>
<p>I&#8217;d just like to add that when you&#8217;re sending email via &#8220;<strong><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">relay-hosting.secureserver.net&#8221;</span></span></strong> you will be able to send email via the GoDaddy server but it will not work if you run it locally. This is normal &#8211; it&#8217;s a security feature.</p>
<p>Code below</p>
<p>using system.net.mail namespace.</p>
<p><strong><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">const</span></span><span style="font-size:x-small;"> </span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">string</span></span><span style="font-size:x-small;"> SERVER = </span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;relay-hosting.secureserver.net&#8221;</span></span></strong><span style="font-size:x-small;"><strong>;</strong></span><span style="font-size:x-small;"> </span></p>
<p><span style="font-size:x-small;">System.Net.Mail.</span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">MailMessage</span></span><span style="font-size:x-small;"> objMail = </span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">new</span></span><span style="font-size:x-small;"> System.Net.Mail.</span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">MailMessage</span></span><span style="font-size:x-small;">();</span></p>
<p><span style="font-size:x-small;">objMail.From = </span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">new</span></span><span style="font-size:x-small;"> </span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">MailAddress</span></span><span style="font-size:x-small;">(</span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;&#8221;</span></span><span style="font-size:x-small;">);</span><span style="font-size:x-small;">objMail.To.Add(MailId);</span></p>
<p>objMail.Bcc.Add(BCC);</p>
<p>objMail.IsBodyHtml = <span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">true</span></span><span style="font-size:x-small;">;</span><span style="font-size:x-small;"> </span></p>
<p><span style="font-size:x-small;">objMail.Subject = </span><span style="font-size:x-small;color:#a31515;"><span style="font-size:x-small;color:#a31515;">&#8220;Order Confirmation&#8221;</span></span><span style="font-size:x-small;">;</span></p>
<p><span style="font-size:x-small;">objMail.Priority = System.Net.Mail.</span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">MailPriority</span></span><span style="font-size:x-small;">.High;</span></p>
<p><span style="font-size:x-small;">objMail.Body = &#8220;&lt;h1&gt;hi&lt;/h1&gt;&#8221;;</span></p>
<p><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">SmtpClient</span></span><span style="font-size:x-small;"> Client = </span><span style="font-size:x-small;color:#0000ff;"><span style="font-size:x-small;color:#0000ff;">new</span></span><span style="font-size:x-small;"> </span><span style="font-size:x-small;color:#2b91af;"><span style="font-size:x-small;color:#2b91af;">SmtpClient</span></span><span style="font-size:x-small;">(SERVER);</span><span style="font-size:x-small;">Client.Send(objMail);</span></p>
<p>U need to Specifie the SMTP CLIENT SERVER LIKE THAT</p>
<p>This is working with my Godaddy Server try out</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onetidbit.wordpress.com/72/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onetidbit.wordpress.com/72/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onetidbit.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onetidbit.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onetidbit.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onetidbit.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onetidbit.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onetidbit.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onetidbit.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onetidbit.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onetidbit.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onetidbit.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onetidbit.wordpress.com&blog=2446287&post=72&subd=onetidbit&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://onetidbit.wordpress.com/2008/08/11/email-sending-problem-from-godaddy-server-solved-in-aspnet-108-situations/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8fbf98ae0461d7ea51945d91b92f8ebd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Radhe</media:title>
		</media:content>
	</item>
	</channel>
</rss>