<?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>MsDotNetMentor &#187; Asp.net</title>
	<atom:link href="http://www.msdotnetmentor.com/category/asp-net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.msdotnetmentor.com</link>
	<description>Knowing Is Not Enough We Must Apply</description>
	<lastBuildDate>Wed, 26 May 2010 12:01:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Creating Thumbnail Images in C#</title>
		<link>http://www.msdotnetmentor.com/aspdotnet/creating-thumbnail-images-in-c.html</link>
		<comments>http://www.msdotnetmentor.com/aspdotnet/creating-thumbnail-images-in-c.html#comments</comments>
		<pubDate>Mon, 06 Jul 2009 07:39:57 +0000</pubDate>
		<dc:creator>Anil pandey</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[CSharp]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=575</guid>
		<description><![CDATA[Hi All,
The image processing is a very typical task, but still it is simple to do. There are application where we need to create the thumbnail of the uploaded images, at that time we need to resize the image. here is the sample code through which we can resize the image easily..
We just need to use the 2-3 main name spaces that are
1. System.Drawing
2. System.Drawing.Imaging
3. System.Drawing.Drawing2D
with the use of these name spaces we can do our task. i have made a function by which we can create the thumbnail of ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/aspdotnet/creating-thumbnail-images-in-c.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sending Email Through ASP.NET using C#</title>
		<link>http://www.msdotnetmentor.com/csharp/sending-email-through-aspnet-using-c.html</link>
		<comments>http://www.msdotnetmentor.com/csharp/sending-email-through-aspnet-using-c.html#comments</comments>
		<pubDate>Thu, 11 Jun 2009 17:38:08 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[CSharp]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[can't send email]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[how can i send a email]]></category>
		<category><![CDATA[how can i send email]]></category>
		<category><![CDATA[how to send email]]></category>
		<category><![CDATA[how to send html email]]></category>
		<category><![CDATA[Meetu]]></category>
		<category><![CDATA[meetu choudhary]]></category>
		<category><![CDATA[meetuchoudhary]]></category>
		<category><![CDATA[MsDotnetMentor]]></category>
		<category><![CDATA[send email]]></category>
		<category><![CDATA[send mail using c#]]></category>

		<guid isPermaLink="false">http://www.msdotnetheaven.com/?p=480</guid>
		<description><![CDATA[Sending Email Through ASP.NET using C#
The following Sample Code is the code which can be used to send mails through ASP.Net C#&#8230;. its a working code for me&#8230;..

&#60;pre&#62;using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.
WebParts;
using System.Web.UI.HtmlControls;
using System.Net.Mail;
public partial class Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
    }
    protected void Button1_Click(object sender, EventArgs e)
    {
//Calling the function SendMail
      Response.Write( SendMail("meetuchoudhary@gmail.com","meetudmeet@gmail.com","meetudmeet@yahoo.com","Test Mail","Test Mail Body"));
    ...


Related posts:<ol><li><a href='http://www.msdotnetmentor.com/aspdotnet/sending-mails-with-attachments-using-gmail.html' rel='bookmark' title='Permanent Link: Sending Mails with attachments using Gmail'>Sending Mails with attachments using Gmail</a> <small> Tweet This Post...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/csharp/sending-email-through-aspnet-using-c.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to create ASPX Page Dynamically &#8211; A Step Ahead Series?</title>
		<link>http://www.msdotnetmentor.com/asp-net/how-to-create-aspx-page-dynamically-a-step-ahead-series.html</link>
		<comments>http://www.msdotnetmentor.com/asp-net/how-to-create-aspx-page-dynamically-a-step-ahead-series.html#comments</comments>
		<pubDate>Sun, 22 Feb 2009 00:04:28 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[A Step Ahead Series]]></category>
		<category><![CDATA[ASPx Page Dynamically]]></category>
		<category><![CDATA[Dynamic Web Page]]></category>

		<guid isPermaLink="false">http://www.msdotnetheaven.com/?p=423</guid>
		<description><![CDATA[Introduction
In a simple creating an aspx page dynamically is a very tedious job. Whenever we think for dynamically creation scenarios stuck in mind about the overload to server etc. But with the help of this article one can attain the same as easily as creating another simple aspx page.
Need and Requirement
Now next words came to mind that what is the need to create an aspx page dynamically? Let me explain it:

You need to create a page, based on selected requirement at the moment.
Need to create a page from static html ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/asp-net/how-to-create-aspx-page-dynamically-a-step-ahead-series.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>LINQ Querry : A Step Ahead Series</title>
		<link>http://www.msdotnetmentor.com/asp-net/linq-querry-a-step-ahead-series.html</link>
		<comments>http://www.msdotnetmentor.com/asp-net/linq-querry-a-step-ahead-series.html#comments</comments>
		<pubDate>Tue, 10 Feb 2009 14:18:54 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[A Step Ahead Series]]></category>
		<category><![CDATA[LINQ]]></category>
		<category><![CDATA[LINQ Query]]></category>

		<guid isPermaLink="false">http://www.msdotnetheaven.com/?p=416</guid>
		<description><![CDATA[LINQ Querry : A Step Ahead Series
History:
The article is related to previous posts :
1. Anonymous Types in LINQ: A Step Ahead Series
2. How to Test Anonymous Type Equality &#8211; LINQ: A Step Ahead Series
Introduction:
LINQ &#8211;  Language Integreted Query is repeadily used in these days. The presented article is elaborate the idea &#8220;How to describe a LINQ Query&#8221;.
Simply, a query is an expression that retrieves data from a data source.
Scope:
The scope of the presented article is upto its title and projected scenarios.

Basics
LINQ Actions
Some basic example
Creating a LINQ project using Visual ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/asp-net/linq-querry-a-step-ahead-series.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Test Anonymous Type Equality &#8211; LINQ: A Step Ahead Series</title>
		<link>http://www.msdotnetmentor.com/asp-net/how-to-test-anonymous-type-equality-linq-a-step-ahead-series.html</link>
		<comments>http://www.msdotnetmentor.com/asp-net/how-to-test-anonymous-type-equality-linq-a-step-ahead-series.html#comments</comments>
		<pubDate>Mon, 09 Feb 2009 12:21:27 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[A Step Ahead Series]]></category>
		<category><![CDATA[Anonymous Type]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://www.msdotnetheaven.com/?p=413</guid>
		<description><![CDATA[How to Test Anonymous Type Equality &#8211; LINQ: A Step Ahead Series
First of all Anonymous Type Equality : If two or more anonymous types have same order, number and member declaratory type amd name then the same anonymous type is defined. So, its permissible to use the referencial equality operator on these types.
Now lets see the other face of the coin means of any of order, number and member declarator type and name is different then different anonymous type is defined for each. Then it throw compiler error while testing ...


Related posts:<ol><li><a href='http://www.msdotnetmentor.com/linq/what-is-a-lambda-expression.html' rel='bookmark' title='Permanent Link: What is a Lambda expression?'>What is a Lambda expression?</a> <small>A Lambda expression is nothing but an Anonymous Function, can...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/asp-net/how-to-test-anonymous-type-equality-linq-a-step-ahead-series.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
