<?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>ForDevs &#187; Asp.net</title>
	<atom:link href="http://www.fordevs.com/category/programming/aspnet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to open Immediate Window In VS 2005- Shortcuts</title>
		<link>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html</link>
		<comments>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html#comments</comments>
		<pubDate>Mon, 20 Jul 2009 11:49:19 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[VS2005]]></category>
		<category><![CDATA[Window]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=550</guid>
		<description><![CDATA[The Immediate window is used to debug and evaluate expressions, execute statements, print variable values etc.The Immediate window also supports IntelliSense.There are different methods to open Immediate window. Method 1 : - We can open Immediate Window from debug menu. Debug-&#62;Windows-&#62;Immediate Window Some times Immediate Window menu would be missing.If it seems to be missing [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/07/how-to-open-immediate-window-in-vs-2005-shortcuts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Steps to Create Setup and Deployment Project in Dot Net VS 2008</title>
		<link>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html</link>
		<comments>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html#comments</comments>
		<pubDate>Sat, 11 Jul 2009 07:12:19 +0000</pubDate>
		<dc:creator>praveen</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Project]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=452</guid>
		<description><![CDATA[Step 1 Create your own windows application. Create a new Windows application project in C# and named it as Sample. Step 2 Design your own application. Here we have a simple login form for example. Step 3 After completing the design and coding, build the solution of the project in release mode. Step 4 Check [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/07/steps-to-create-setup-and-deployment-project-in-dot-net-vs-2008.html/feed</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Get Clients IP Address Using ASP.NET</title>
		<link>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html</link>
		<comments>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html#comments</comments>
		<pubDate>Wed, 18 Feb 2009 14:32:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[ip address]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2009/02/get-clients-ip-address-using-aspnet.html</guid>
		<description><![CDATA[We can get the clients IP address using the Request object&#8217;s(The Request object retrieves the values that the client browser passed to the server during an HTTP request. ) property Request.ServerVariables Collection.Request.ServerVariables Collection gets the values of predetermined environment variables. &#8220;REMOTE_ADDR&#8221; gets the IP address of the remote host making the request.&#160; string ipaddr; ipaddr [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/02/get-clients-ip-address-using-aspnet.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Upload File in Asp.net</title>
		<link>http://www.fordevs.com/2008/12/how-to-upload-file-in-aspnet.html</link>
		<comments>http://www.fordevs.com/2008/12/how-to-upload-file-in-aspnet.html#comments</comments>
		<pubDate>Fri, 12 Dec 2008 17:27:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[File]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/how-to-upload-file-in-aspnet.html</guid>
		<description><![CDATA[Here in this example we browse a file from our pc and upload that file to some other location in our pc. Default.aspx &#60;input type=file id=File1 name=File1 runat=&#8221;server&#8221;&#62;&#60;input type=&#8221;submit&#8221; id=&#8221;Submit1&#8243; value=&#8221;Upload&#8221; runat=&#8221;server&#8221; name=&#8221;Submit1&#8243;&#62; Defalut.aspx.cs protected void Submit1_ServerClick(object sender, EventArgs e) { if( ( File1.PostedFile != null ) &#38;&#38; ( File1.PostedFile.ContentLength > 0 ) ) { [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/how-to-upload-file-in-aspnet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple Add,Edit,Retrieve and Delete in Asp.net</title>
		<link>http://www.fordevs.com/2008/12/simple-addeditretrieve-and-delete-in.html</link>
		<comments>http://www.fordevs.com/2008/12/simple-addeditretrieve-and-delete-in.html#comments</comments>
		<pubDate>Tue, 09 Dec 2008 05:10:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/12/simple-addeditretrieve-and-delete-in-aspnet.html</guid>
		<description><![CDATA[Here is a example application of Add,Edit,Retrieve and Delete operations using Asp.net. Download Creating a table employeeinfo for proceeding the operations. Sql Table Creation CREATE TABLE employeeinfo &#40; empid int NOT NULL PRIMARY KEY, empname varchar&#40;50&#41;, empaddress varchar&#40;200&#41;, empsalary int &#41; Declaring Connection String and Variables Namespace : using System.Data.SqlClient; string QryStr = ""; SqlConnection [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/12/simple-addeditretrieve-and-delete-in.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is ViewState ?</title>
		<link>http://www.fordevs.com/2008/11/what-is-viewstate.html</link>
		<comments>http://www.fordevs.com/2008/11/what-is-viewstate.html#comments</comments>
		<pubDate>Mon, 10 Nov 2008 17:16:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[What-is]]></category>
		<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/11/what-is-viewstate.html</guid>
		<description><![CDATA[ASP.NET view state is the technique used by an ASP.NET Web page to persist changes to the state of a Web Form across postbacks.That is when a form is submitted in ASP .NET, the form reappears in the browser window together with all form values. The ViewState indicates the status of the page when submitted [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/11/what-is-viewstate.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Tracing?</title>
		<link>http://www.fordevs.com/2008/10/what-is-tracing.html</link>
		<comments>http://www.fordevs.com/2008/10/what-is-tracing.html#comments</comments>
		<pubDate>Fri, 31 Oct 2008 04:20:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[What-is]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[trace]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/what-is-tracing.html</guid>
		<description><![CDATA[Tracing is a refined process for outputting page-level information.When tracing is enabled you automatically get information on the ASP.NET Web page. Information like: Request Details &#8211; Session Id; Request time, type, and encoding; status code, etc. Trace Information &#8211; Page-level ASP.NET messages that you specify via Trace.Write and Trace.Warn. Control Tree &#8211; A listing of [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/what-is-tracing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Is ASP.Net?</title>
		<link>http://www.fordevs.com/2008/10/what-is-aspnet.html</link>
		<comments>http://www.fordevs.com/2008/10/what-is-aspnet.html#comments</comments>
		<pubDate>Mon, 27 Oct 2008 11:59:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[What-is]]></category>
		<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/10/what-is-aspnet.html</guid>
		<description><![CDATA[ASP.NET is a web application framework built on the common language runtime used to build dynamic web sites, web applications and XML web services.ASP.NET is the next generation ASP, but it’s not an upgraded version of ASP. ASP.NET is a program that runs inside IIS and is a part of Microsoft’s .NET platform. ASP.NET allows [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/10/what-is-aspnet.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open an application, file Using Shell execute in .net</title>
		<link>http://www.fordevs.com/2008/09/how-to-open-application-file-using.html</link>
		<comments>http://www.fordevs.com/2008/09/how-to-open-application-file-using.html#comments</comments>
		<pubDate>Wed, 17 Sep 2008 07:16:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://localhost/fordevs/2008/09/how-to-open-an-application-file-using-shell-execute-in-net.html</guid>
		<description><![CDATA[We can execute any application(any files,notepad,calculator and etc) using C#.net bySystem.Diagnostics.Process.Start. Coding : private void bt_ShellExecute_Click(object sender, EventArgs e){string strpath = &#8220;C:\\sample.xls&#8221;; System.Diagnostics.Process.Start(strpath);}]]></description>
		<wfw:commentRss>http://www.fordevs.com/2008/09/how-to-open-application-file-using.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
