<?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/"
	>

<channel>
	<title>TechnoBlogy &#187; .NET</title>
	<atom:link href="http://technoblogy.net/category/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://technoblogy.net</link>
	<description>Technology with a Big difference</description>
	<lastBuildDate>Thu, 09 Sep 2010 08:02:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Retrieving domain information through ASP.NET</title>
		<link>http://technoblogy.net/retrieving-domain-information-through-asp-net/</link>
		<comments>http://technoblogy.net/retrieving-domain-information-through-asp-net/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 12:01:45 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[fetching]]></category>
		<category><![CDATA[information]]></category>

		<guid isPermaLink="false">http://technoblogy.net/retrieving-domain-information-through-asp-net/</guid>
		<description><![CDATA[There are many&#160; domain checking websites available that gives all the information regarding domains. WhoIs is one of them. Following is a sample asp.net code that connects to one of WhoIs servers and retrieve information of a specific website. using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Net.Sockets; using System.IO; [...]]]></description>
			<content:encoded><![CDATA[<p>There are many&#160; domain checking websites available that gives all the information regarding domains. WhoIs is one of them. Following is a sample asp.net code that connects to one of WhoIs servers and retrieve information of a specific website.</p>
<blockquote><p>using System;      <br />using System.Collections.Generic;       <br />using System.Linq;       <br />using System.Web;       <br />using System.Web.UI;       <br />using System.Web.UI.WebControls;       <br />using System.Net.Sockets;       <br />using System.IO;       <br />using System.Text;       <br />using System.Text.RegularExpressions;       <br />public partial class _Default : System.Web.UI.Page       <br />{       <br />&#160;&#160;&#160; protected void Page_Load(object sender, EventArgs e)       <br />&#160;&#160;&#160; {       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; string domainname = Request.QueryString[&quot;domain&quot;].ToString();       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; TcpClient objTCPC = new TcpClient();       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; objTCPC.Connect(&quot;whois.enom.com&quot;, 43);       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; string strDomain = domainname;// +&quot;\\r\\n&quot;;       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; byte[] arrDomain = Encoding.ASCII.GetBytes(strDomain);       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Stream objStream = objTCPC.GetStream();       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; objStream.Write(arrDomain, 0, strDomain.Length);       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; StreamReader objSr = new StreamReader(objTCPC.GetStream(),Encoding.ASCII);       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; string strServerResponse = objSr.ReadToEnd();       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; strServerResponse = Regex.Replace(strServerResponse, &quot;\n&quot;, &quot;&lt;br&gt;&quot;);       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; Response.Write(strServerResponse);       <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; objTCPC.Close();       <br />&#160;&#160;&#160; }       <br />}</p>
</blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Retrieving domain information through ASP.NET" url="http://technoblogy.net/retrieving-domain-information-through-asp-net/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/retrieving-domain-information-through-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add meta data dynamically</title>
		<link>http://technoblogy.net/add-meta-data-dynamically/</link>
		<comments>http://technoblogy.net/add-meta-data-dynamically/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 11:27:17 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[dynamically]]></category>
		<category><![CDATA[meta data]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=348</guid>
		<description><![CDATA[Add meta-data dynamically to your page by adding a HtmlMeta control to your Header. In this example I dynamically add a keyword string to the page. string keyWords = &#8220;metatags, html, dynamic, generate&#8221;; HtmlMeta keywords = new HtmlMeta(); keywords.Name = &#8220;keywords&#8221;; keywords.Content = keyWords; Page.Header.Controls.Add(keywords);]]></description>
			<content:encoded><![CDATA[<p>Add meta-data dynamically to your page by adding a HtmlMeta control to your Header. In this example I dynamically add a keyword string to the page.</p>
<blockquote><p>string keyWords = &#8220;metatags, html, dynamic, generate&#8221;;</p>
<p>HtmlMeta keywords = new HtmlMeta();</p>
<p>keywords.Name = &#8220;keywords&#8221;;</p>
<p>keywords.Content = keyWords;</p>
<p>Page.Header.Controls.Add(keywords);</p></blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Add meta data dynamically" url="http://technoblogy.net/add-meta-data-dynamically/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/add-meta-data-dynamically/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Date Time string formatting in ASP.NET</title>
		<link>http://technoblogy.net/date-time-string-formatting-in-asp-net/</link>
		<comments>http://technoblogy.net/date-time-string-formatting-in-asp-net/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 11:15:15 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[DateTime]]></category>
		<category><![CDATA[patterns]]></category>
		<category><![CDATA[string formatting]]></category>

		<guid isPermaLink="false">http://technoblogy.net/date-time-string-formatting-in-asp-net/</guid>
		<description><![CDATA[With the following code you can format a DateTime within a Databind. &#60;%# DateTime.Parse(Eval(&#34;DateModified&#34;).ToString()).ToString(&#34;MM-dd-yyyy&#34;)%&#62; Some more format specifiers that can change format of datetime objects the way it is required. Format specifier Name d Short date pattern D Long date pattern t Short time pattern T Long time pattern f Full date/time pattern ( short [...]]]></description>
			<content:encoded><![CDATA[<p>With the following code you can format a DateTime within a Databind.</p>
<blockquote><p>&lt;%# DateTime.Parse(Eval(&quot;DateModified&quot;).ToString()).ToString(&quot;MM-dd-yyyy&quot;)%&gt; </p>
</blockquote>
<p>Some more format specifiers that can change format of datetime objects the way it is required.</p>
<table class="data" cellspacing="1" width="50%" align="left">
<colgroup>
<col width="20%" />
<col width="25%" /></colgroup>
<tbody>
<tr>
<th>Format specifier</th>
<th>Name</th>
</tr>
<tr>
<td>d</td>
<td>Short date pattern</td>
</tr>
<tr>
<td>D</td>
<td>Long date pattern</td>
</tr>
<tr>
<td>t</td>
<td>Short time pattern</td>
</tr>
<tr>
<td>T</td>
<td>Long time pattern</td>
</tr>
<tr>
<td>f</td>
<td>Full date/time pattern ( short time )</td>
</tr>
<tr>
<td>F</td>
<td>Full date/time pattern ( long time )</td>
</tr>
<tr>
<td>g</td>
<td>General date/time pattern ( short time )</td>
</tr>
<tr>
<td>G</td>
<td>General date/time pattern ( long time )</td>
</tr>
<tr>
<td>M or m</td>
<td>Month day pattern</td>
</tr>
<tr>
<td>R or r</td>
<td>RFC1123 pattern</td>
</tr>
<tr>
<td>s</td>
<td>Sortable date/time pattern; conforms to ISO 8601</td>
</tr>
<tr>
<td>u</td>
<td>Universal sortable date/time pattern</td>
</tr>
<tr>
<td>U</td>
<td>Universal sortable date/time pattern</td>
</tr>
<tr>
<td>Y or y</td>
<td>Year month pattern</td>
</tr>
</tbody>
</table>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Date Time string formatting in ASP.NET" url="http://technoblogy.net/date-time-string-formatting-in-asp-net/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/date-time-string-formatting-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SqlBulkCopy &#8211; Bulk Insertion in SQL Server from .NET</title>
		<link>http://technoblogy.net/sqlbulkcopy-bulk-insertion-in-sql-server-from-net/</link>
		<comments>http://technoblogy.net/sqlbulkcopy-bulk-insertion-in-sql-server-from-net/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 13:27:06 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[bulk]]></category>
		<category><![CDATA[insertion]]></category>
		<category><![CDATA[sqlbulkcopy]]></category>

		<guid isPermaLink="false">http://technoblogy.net/sqlbulkcopy-bulk-insertion-in-sql-server-from-net/</guid>
		<description><![CDATA[Many a times there come a scenario when you have to insert large number of records in sql server. There are number of ways to implement this scenario: through looping techniques to call insert statements for one record at a time. Serialize the data in CSV or XML format and send them as a parameter [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://technoblogy.net/wp-content/uploads/2010/08/SQL-Server.png"></a><a href="http://technoblogy.net/wp-content/uploads/2010/08/VS2010Logo.png"></a>Many a times there come a scenario when you have to insert large number of records in sql server. There are number of ways to implement this scenario:</p>
<ul>
<li>through looping techniques to call insert statements for one record at a time.</li>
<li>Serialize the data in CSV or XML format and send them as a parameter to a stored procedure and then through parsing execute insertion statements.</li>
<li>generate a file and load them through a SSIS package.</li>
<li>Use SqlBulkCopy.</li>
</ul>
<p>SqlBulkCopy is way faster than multiple insert statements, serializing/ deserializing the data, or saving the data out to a file system and running an import.  Its also has no limit on the data you can send across and very efficient in the way it handles inserts.</p>
<p>This is how simple it is to use it. In the example we have a function that writes copies are DataTable into a MS SQL database table called “tblInsertion”.</p>
<blockquote><p>using System.Data.SqlClient;<br />
…</p>
<p>Function WriteToDB(DataTable dt)</p>
<p>{</p>
<blockquote><p>SqlBulkCopy sqlBC = new SqlBulkCopy(dbconnectionstring);</p>
<p>sqlBC.BatchSize = 25000;</p>
<p>sqlBC.BulkCopyTimeout = 60;</p>
<p>sqlBC.DestinationTableName = “dbo.tblFooBar” ;</p>
<p>sqlBC.WriteToServer(dt);</p></blockquote>
<p>}</p></blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="SqlBulkCopy &ndash; Bulk Insertion in SQL Server from .NET" url="http://technoblogy.net/sqlbulkcopy-bulk-insertion-in-sql-server-from-net/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/sqlbulkcopy-bulk-insertion-in-sql-server-from-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal report tutorial &#8211; VS 2005</title>
		<link>http://technoblogy.net/crystal-report-tutorial-vs-2005/</link>
		<comments>http://technoblogy.net/crystal-report-tutorial-vs-2005/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 09:20:48 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[vs 2005]]></category>

		<guid isPermaLink="false">http://technoblogy.net/?p=130</guid>
		<description><![CDATA[A very good book on using Crystal reports in Visual Studio 2005. many small and minute things are discussed in this book. VS2005 Walkthroughs Crystal Reports]]></description>
			<content:encoded><![CDATA[<p>A very good book on using Crystal reports in Visual Studio 2005. many small and minute things are discussed in this book.</p>
<p><a href="http://technoblogy.net/wp-content/uploads/2009/11/VS2005_Walkthroughs_CrystalReports.pdf">VS2005 Walkthroughs Crystal Reports</a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Crystal report tutorial - VS 2005" url="http://technoblogy.net/crystal-report-tutorial-vs-2005/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/crystal-report-tutorial-vs-2005/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to Export dataset in Excel</title>
		<link>http://technoblogy.net/easy-way-to-export-dataset-in-excel/</link>
		<comments>http://technoblogy.net/easy-way-to-export-dataset-in-excel/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:44:03 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[dataset]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[exporting]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[response]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://technoblogy.net/easy-way-to-export-dataset-in-excel/</guid>
		<description><![CDATA[Fastest way to export dataset in excel format is: DataSet dsExport = new DataSet(); System.IO.StringWriter tw = new System.IO.StringWriter(); HTMLTextWriter hw = new HTMLTextWriter(tw); DataGrid dg = new DataGrid(); dg.DataSource = &#34;Dataset to be exported&#34; hw.WriteLine (&#34;&#60;b&#62;&#60;font size=&#8217;3&#8242;&#62;Exported report&#60;/font&#62;&#60;/b&#62;&#34;); dg.DataBind(); Response.ContentType = &#34;application/vnd.ms-excel&#34;; EnableViewState = false; Response.Write(tw.ToString()); Response.End();]]></description>
			<content:encoded><![CDATA[<p>Fastest way to export dataset in excel format is:</p>
<blockquote><blockquote>
<p>DataSet dsExport = new DataSet();</p>
<p>System.IO.StringWriter tw = new System.IO.StringWriter();</p>
<p>HTMLTextWriter hw = new HTMLTextWriter(tw);</p>
<p>DataGrid dg = new DataGrid();</p>
<p>dg.DataSource = &quot;Dataset to be exported&quot;</p>
<p>hw.WriteLine (&quot;&lt;b&gt;&lt;font size=&#8217;3&#8242;&gt;Exported report&lt;/font&gt;&lt;/b&gt;&quot;);</p>
<p>dg.DataBind();</p>
<p>Response.ContentType = &quot;application/vnd.ms-excel&quot;;</p>
<p>EnableViewState = false;</p>
<p>Response.Write(tw.ToString());</p>
<p>Response.End();</p>
</blockquote>
</blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Easy way to Export dataset in Excel" url="http://technoblogy.net/easy-way-to-export-dataset-in-excel/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/easy-way-to-export-dataset-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Report Viewer width &#8211; Visual Studio</title>
		<link>http://technoblogy.net/crystal-report-viewer-width-visual-studio/</link>
		<comments>http://technoblogy.net/crystal-report-viewer-width-visual-studio/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:43:17 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[bestfitpage]]></category>
		<category><![CDATA[crystal viewer]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[property]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://technoblogy.net/crystal-report-viewer-width-visual-studio/</guid>
		<description><![CDATA[By default Crystal report viewer width is fixed according to it toolbar, but changes due to amount of data present in the report. And the width is not editable (as it is seen). Because of this reason if a crystal report has good amount of data then it goes past page width and disturbs the [...]]]></description>
			<content:encoded><![CDATA[<p>By default Crystal report viewer width is fixed according to it toolbar, but changes due to amount of data present in the report. And the width is not editable (as it is seen). Because of this reason if a crystal report has good amount of data then it goes past page width and disturbs the UI of that webpage.</p>
<p>One method to overcome this problem is hidden in the Crystal Report viewer itself, Viewer has a property named: &quot;Best Fit page&quot;. Its value is true by default, change this value to false and then set the width of the report. Now you can change the width of the report to anything.</p>
<p>One drawback/functionality of turning this feature off is the horizontal and vertical scroll bar appears. Now this thing is good or bad, it depends on report scenarios.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Crystal Report Viewer width &ndash; Visual Studio" url="http://technoblogy.net/crystal-report-viewer-width-visual-studio/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/crystal-report-viewer-width-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Windows Service account dynamically</title>
		<link>http://technoblogy.net/setting-windows-service-account-dynamically/</link>
		<comments>http://technoblogy.net/setting-windows-service-account-dynamically/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:42:30 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[windows service]]></category>

		<guid isPermaLink="false">http://technoblogy.net/setting-windows-service-account-dynamically/</guid>
		<description><![CDATA[Often we need to change the windows service account to our needs or when a new user is logged in who has not installed the service. Here is a quick way to check and change the service account. string objPath = string.Format(&#34;Win32_Service.Name=&#8217;{0}&#8217;&#34;, serviceName); using (ManagementObject service = new ManagementObject(new ManagementPath(objPath))) { object[] wmiParams = new [...]]]></description>
			<content:encoded><![CDATA[<p>Often we need to change the windows service account to our needs or when a new user is logged in who has not installed the service. Here is a quick way to check and change the service account.</p>
<blockquote><p>string objPath = string.Format(&quot;Win32_Service.Name=&#8217;{0}&#8217;&quot;, serviceName);      <br />using (ManagementObject service = new ManagementObject(new ManagementPath(objPath)))       <br />{       <br />object[] wmiParams = new object[11];       <br />wmiParams[6] = username;       <br />wmiParams[7] = password;       <br />service.InvokeMethod(&quot;Change&quot;, wmiParams);       <br />}</p>
</blockquote>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="Setting Windows Service account dynamically" url="http://technoblogy.net/setting-windows-service-account-dynamically/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/setting-windows-service-account-dynamically/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The maximum report processing jobs limit configured by your system administrator has been reached.</title>
		<link>http://technoblogy.net/the-maximum-report-processing-jobs-limit-configured-by-your-system-administrator-has-been-reached/</link>
		<comments>http://technoblogy.net/the-maximum-report-processing-jobs-limit-configured-by-your-system-administrator-has-been-reached/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:42:11 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[print jobs]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[session]]></category>

		<guid isPermaLink="false">http://technoblogy.net/the-maximum-report-processing-jobs-limit-configured-by-your-system-administrator-has-been-reached/</guid>
		<description><![CDATA[call Close or Dispose method at the end so the reporting engine remove the report entry from its queue.]]></description>
			<content:encoded><![CDATA[<p>call Close or Dispose method at the end so the reporting engine remove the report entry from its queue.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="The maximum report processing jobs limit configured by your system administrator has been reached." url="http://technoblogy.net/the-maximum-report-processing-jobs-limit-configured-by-your-system-administrator-has-been-reached/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/the-maximum-report-processing-jobs-limit-configured-by-your-system-administrator-has-been-reached/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MS Charts in Visual Studion 2008</title>
		<link>http://technoblogy.net/ms-charts-in-visual-studion-2008/</link>
		<comments>http://technoblogy.net/ms-charts-in-visual-studion-2008/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 07:41:28 +0000</pubDate>
		<dc:creator>Nauman</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[charting]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[ms charts]]></category>
		<category><![CDATA[vs 2008]]></category>

		<guid isPermaLink="false">http://technoblogy.net/ms-charts-in-visual-studion-2008/</guid>
		<description><![CDATA[Looking for some good looking and lightweight charting control to be used with VS 2008 applications. I have checked the following article on adding an using MS Charts control in vs 2008. It contains all the basic information regarding the creation and implementation of ms chart controls. MS Charts MS Charts Download Chart Templates]]></description>
			<content:encoded><![CDATA[<p>Looking for some good looking and lightweight charting control to be used with VS 2008 applications.</p>
<p>I have checked the following article on adding an using MS Charts control in vs 2008. It contains all the basic information regarding the creation and implementation of ms chart controls.</p>
<p><a href="http://aspnetnova.blogspot.com/2008/12/how-to-add-ms-chart-controls-into.html">MS Charts</a></p>
<p><a href="http://www.microsoft.com/DownLoads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&amp;displaylang=en">MS Charts Download</a></p>
<p><a href="http://office.microsoft.com/en-us/templates/CT101443491033.aspx">Chart Templates</a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_1305" title="MS Charts in Visual Studion 2008" url="http://technoblogy.net/ms-charts-in-visual-studion-2008/"></script>]]></content:encoded>
			<wfw:commentRss>http://technoblogy.net/ms-charts-in-visual-studion-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
