<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.3" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: How to use ADO.NET with parameters in ASP.NET to INSERT a record into a SQL Server database</title>
	<link>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/</link>
	<description>Quality ASP.NET/C#/SQL Server tutorials, examples, videos and advice</description>
	<pubDate>Thu, 09 Feb 2012 17:50:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.3</generator>

	<item>
		<title>By: toyota camry</title>
		<link>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-299</link>
		<dc:creator>toyota camry</dc:creator>
		<pubDate>Thu, 28 Oct 2010 00:52:09 +0000</pubDate>
		<guid>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-299</guid>
		<description>I wish I could write like you as Margaret Laurence once said "When I say "work" I only mean writing. Everything else is just odd jobs."</description>
		<content:encoded><![CDATA[<p>I wish I could write like you as Margaret Laurence once said &#8220;When I say &#8220;work&#8221; I only mean writing. Everything else is just odd jobs.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LatoyaCUNNINGHAM19</title>
		<link>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-295</link>
		<dc:creator>LatoyaCUNNINGHAM19</dc:creator>
		<pubDate>Sun, 05 Sep 2010 01:17:32 +0000</pubDate>
		<guid>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-295</guid>
		<description>The &lt;a href="http://bestfinance-blog.com/topics/home-loans" rel="nofollow"&gt;home loans&lt;/a&gt; seem to be essential for guys, which would like to organize their organization. In fact, that is very easy to receive a short term loan.</description>
		<content:encoded><![CDATA[<p>The <a href="http://bestfinance-blog.com/topics/home-loans" rel="nofollow">home loans</a> seem to be essential for guys, which would like to organize their organization. In fact, that is very easy to receive a short term loan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-292</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Wed, 04 Aug 2010 20:41:40 +0000</pubDate>
		<guid>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-292</guid>
		<description>Ted, for me to get the connection string from web.config, I had to add "System.Configuration." in front of "ConfigurationManager", as follows:

SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings["YOUR_CONNECT_STRING_NAME_FROM_web.config"].ConnectionString))</description>
		<content:encoded><![CDATA[<p>Ted, for me to get the connection string from web.config, I had to add &#8220;System.Configuration.&#8221; in front of &#8220;ConfigurationManager&#8221;, as follows:</p>
<p>SqlConnection(System.Configuration.ConfigurationManager.ConnectionStrings[&#8221;YOUR_CONNECT_STRING_NAME_FROM_web.config&#8221;].ConnectionString))</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ted</title>
		<link>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-228</link>
		<dc:creator>ted</dc:creator>
		<pubDate>Fri, 04 Dec 2009 03:03:08 +0000</pubDate>
		<guid>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-228</guid>
		<description>John, you can use the connectionstrings from web.config like this:

SqlConnection dbconn = new SqlConnection(ConfigurationManager.ConnectionStrings["YOUR_CONNECT_STRING_NAME_FROM_web.config"].ConnectionString)</description>
		<content:encoded><![CDATA[<p>John, you can use the connectionstrings from web.config like this:</p>
<p>SqlConnection dbconn = new SqlConnection(ConfigurationManager.ConnectionStrings[&#8221;YOUR_CONNECT_STRING_NAME_FROM_web.config&#8221;].ConnectionString)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-226</link>
		<dc:creator>John</dc:creator>
		<pubDate>Thu, 03 Dec 2009 18:42:30 +0000</pubDate>
		<guid>http://www.csharpuniversity.com/2009/05/29/how-to-use-adonet-with-parameters-in-aspnet-to-insert-a-record-into-a-sql-server-database/#comment-226</guid>
		<description>Ted,
 Awsome code. But with this, I am hardcoding the data connection in my logic. 
 How would I code this if I have a connectionStrings alrady in my Web.Config ?
 That way, I can move my code to pretty much anywhere and just change the web.config file and it will work.
Thanks.</description>
		<content:encoded><![CDATA[<p>Ted,<br />
 Awsome code. But with this, I am hardcoding the data connection in my logic.<br />
 How would I code this if I have a connectionStrings alrady in my Web.Config ?<br />
 That way, I can move my code to pretty much anywhere and just change the web.config file and it will work.<br />
Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

