<?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>WebPaws.com &#187; ASP</title>
	<atom:link href="http://webpaws.com/blog/web-development/web-design/asp/feed/" rel="self" type="application/rss+xml" />
	<link>http://webpaws.com/blog</link>
	<description>Internet Marketing and Design Services for Turnkey Web Solutions</description>
	<lastBuildDate>Thu, 10 May 2012 02:17:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Proper Date Time format for MySQL from classic ASP code</title>
		<link>http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/</link>
		<comments>http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 01:25:47 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Date]]></category>
		<category><![CDATA[Time]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=163</guid>
		<description><![CDATA[Proper date time format (ISO) for insertion into a MySQL field from classic ASP code<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/">Proper Date Time format for MySQL from classic ASP code</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper+Date+Time+format+for+MySQL+from+classic+ASP+code&amp;summary=Proper+date+time+format+%28ISO%29+for+insertion+into+a+MySQL+field+from+classic+ASP+code&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p>To properly put the date and time into a MySQL date field, you need to put it into the format of:<br />
<code><br />
yyyy-mm-dd hh:mm:ss<br />
</code></p>
<p>Here is some code to do this in classic ASP for input into a MySQL table:<br />
<code><br />
Dim testdate, testmonth, testday, ISODate<br />
testdate = Request.Form("frmField5")<br />
testmonth = Right(Month(testdate),2)<br />
testday = Right(Day(testdate),2)<br />
ISODate =  Year(testdate) &#038; "-" &#038; testmonth &#038; "-" &#038; testday &#038; " " &#038; hour(testdate) &#038; ":" &#038; minute(testdate) &#038; ":" &#038; second(testdate)<br />
</code></p>
<p>The ISODate variable is in the correct format to insert in a MySQL UPDATE or INSERT SQL statement.  Below is an example SQL string to UPDATE a date field in a MySQL table:<br />
<code><br />
UPDATE myTable SET thisdate = 'ISODate' WHERE myID = 'thisID'<br />
</code></p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/">Proper Date Time format for MySQL from classic ASP code</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;t=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;title=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;bm_description=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F163%2Fproper-date-time-format-for-mysql-from-classic-asp-code%2F&amp;=Proper%20Date%20Time%20format%20for%20MySQL%20from%20classic%20ASP%20code" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
<span class="facebook-like"><fb:like layout="box_count" show_faces="false" width="45" href="http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/"></fb:like></span>]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/163/proper-date-time-format-for-mysql-from-classic-asp-code/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Anchor Text: The meat of the link</title>
		<link>http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/</link>
		<comments>http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 01:30:11 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[XHTML]]></category>
		<category><![CDATA[anchor]]></category>
		<category><![CDATA[anchor text]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[hyperlink]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=114</guid>
		<description><![CDATA[Anchor text is the visible text that is anchored to a hyperlink (web link on a web page).  This is important because the Internets primary purpose is to display pages and link them to other pages of relevant content to enhance your browsing experience.  How do you do this and reap improved SERPs?<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/">Anchor Text: The meat of the link</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor+Text%3A+The+meat+of+the+link&amp;summary=Anchor+text+is+the+visible+text+that+is+anchored+to+a+hyperlink+%28web+link+on+a+web+page%29.++This+is+important+because+the+Internets+primary+purpose+is+to+display+pages+and+link+them+to+other+pages+of+relevant+content+to+enhance+your+browsing+experience.++How+do+you+do+this+and+reap+improved+SERPs%3F&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>EN-US</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!<br />
/* Style Definitions */<br />
table.MsoNormalTable<br />
{mso-style-name:"Table Normal";<br />
mso-tstyle-rowband-size:0;<br />
mso-tstyle-colband-size:0;<br />
mso-style-noshow:yes;<br />
mso-style-priority:99;<br />
mso-style-qformat:yes;<br />
mso-style-parent:"";<br />
mso-padding-alt:0in 5.4pt 0in 5.4pt;<br />
mso-para-margin:0in;<br />
mso-para-margin-bottom:.0001pt;<br />
mso-pagination:widow-orphan;<br />
font-size:11.0pt;<br />
font-family:"Calibri","sans-serif";<br />
mso-ascii-font-family:Calibri;<br />
mso-ascii-theme-font:minor-latin;<br />
mso-fareast-font-family:"Times New Roman";<br />
mso-fareast-theme-font:minor-fareast;<br />
mso-hansi-font-family:Calibri;<br />
mso-hansi-theme-font:minor-latin;<br />
mso-bidi-font-family:"Times New Roman";<br />
mso-bidi-theme-font:minor-bidi;}<br />
--> <!--[endif]--><strong></strong><span style="font-size: 12pt; font-family: &quot;Times New Roman&quot;,&quot;serif&quot;;"><!--[if !supportLineBreakNewLine]--><strong>Anchor Text: the meat of links, the nervous system of the Web</strong></span></p>
<p>Anchor text is the visible text that is anchored to a hyperlink (web link on a web page).  This is important because the internets primary purpose is to display pages and link them to other pages of relevant content to enhance your browsing experience.  There are many kinds of links, but the primary static text/image linked links are the most common and found on most every web page on the internet.  Further examination of links in XHTML (<strong>Extensible Hypertext Markup Language)</strong> of a hyperlink code may look like this:</p>
<p>CODE:<br />
<code>&lt;a href="http://web.marketing.webpaws.com/"&gt;WebPaws.com&amp;rsquo;s Internet Marketing Services&lt;/a&gt;</code></p>
<p>HOW YOUR BROSWERS DISPLAYS IT:<br />
<a title="WebPaws.com Internet Marketing and Web Devlopment Services" href="http://web.marketing.webpaws.com/" target="_blank">WebPaws.com&#8217;s Internet Marketing Services<br />
</a></p>
<p>We will now review the XHTML code including the meat of the link, the anchor text.  An &#8220;a&#8221; tag means the anchor or start of a link, where we start the hyperlink code.  The &#8220;href&#8221; is the hyperlink reference or the URL (<strong>Uniform Resource Locator</strong>) that tell your computer&#8217;s browser where to go for the specific information (linked page) and download and pull it up in your browser.  The anchor text is text sandwiched between the opening &lt;a&gt; tag and the closing &lt;/a&gt; tag.  In this example, the anchor text is &#8220;WebPaws.com&#8217;s Internet Marketing Services&#8221; and is the text that is associated with the link &#8220;http://web.marketing.webpaws.com/&#8221;.</p>
<p>This is an important key factor in increasing your search engine rankings because the search engines use this (anchor) text to aid in determining the relevance of the linked page to the anchor text used as incoming keywords.  The use of this particular anchor text will help the domain, web.marketing.webpaws.com, perform better in search engine results for the keyword &#8220;WebPaws.com&#8217;s Internet Marketing Services&#8221; and similar keyword phrases too (e.g., &#8220;Internet Marketing&#8221;, &#8220;Marketing Services&#8221;, WebPaws.com, etc.)<br />
<!--[endif]--></p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/">Anchor Text: The meat of the link</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;t=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;title=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Anchor%20Text%3A%20The%20meat%20of%20the%20link&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;bm_description=Anchor%20Text%3A%20The%20meat%20of%20the%20link&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F114%2Fanchor-text-the-meat-of-the-link%2F&amp;=Anchor%20Text%3A%20The%20meat%20of%20the%20link" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
<span class="facebook-like"><fb:like layout="box_count" show_faces="false" width="45" href="http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/"></fb:like></span>]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/114/anchor-text-the-meat-of-the-link/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Viral Marketing &#8211; definitions and information</title>
		<link>http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/</link>
		<comments>http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/#comments</comments>
		<pubDate>Sun, 07 Dec 2008 08:03:57 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[SEM]]></category>
		<category><![CDATA[viral marketing]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[online marketing]]></category>
		<category><![CDATA[viral]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=63</guid>
		<description><![CDATA[Viral marketing or viral advertising is a marketing phenomenon that facilitates and encourages people to pass along a marketing message promoting information or products that other customers are compelled to give to other friends, colleagues and family.<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/">Viral Marketing &#8211; definitions and information</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral+Marketing+%26%238211%3B+definitions+and+information&amp;summary=Viral+marketing+or+viral+advertising+is+a+marketing+phenomenon+that+facilitates+and+encourages+people+to+pass+along+a+marketing+message+promoting+information+or+products+that+other+customers+are+compelled+to+give+to+other+friends%2C+colleagues+and+family.&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p>Below is an informative collection of definitions and information about <strong>viral marketing</strong>.  <strong><a title="Contact WebPaws.com for Viral Marketing Campaign Services" href="http://www.webpaws.com/contact/" target="_blank">WebPaws.com</a></strong> has been developing new online viral marketing services to enhance your current Internet marketing efforts.</p>
<p><strong>Viral Web Marketing</strong><br />
A self-spreading or propagating marketing approach that is created when visitors to your site also promote your site. Promotional methods include software trading, word of mouth and “pass-along” content (URLs or emails).  For example, most administrators of free web based email accounts attach an advertisement at the end of each message each time a user sends an email.</p>
<p><strong>Viral Online Marketing</strong><br />
Viral online marketing has been one of the hottest topics since 2005 and the lack of practical how-to information on viral online marketing is mind blowing.  Viral ads are online marketing campaigns that are intended to spread &#8220;like a virus.&#8221;  One minute nobody&#8217;s heard of it, next minute, it&#8217;s everywhere.  The term viral online marketing has existed for almost a decade now, and it has only been until recently that viral online marketing has become mainstream and the topics of all internet entrepreneurs.  Still the majority of internet marketers are increasingly confused about what viral online marketing is, how viral online marketing works, what viral online marketing should cost, and how to measure the results from a viral online marketing campaign.  First off viral online marketing isn&#8217;t focused on the brand itself.  A viral online marketing product may raise sales or otherwise help your brand as a byproduct.  The main focus of viral online marketing is on the creative so people feel compelled to spread the word.  The heart of a viral online marketing campaign is the content.  People don&#8217;t spread the viral online marketing content because they love your brand, they spread it because they can&#8217;t help but spread the word of your viral online marketing content.  The most appealing aspect to viral online marketers is how many people your campaign will reach.  Each campaign has the ability to reach millions of potential customers which can make a no-name marketer to marketer of fame in the blink of an eye.  So the basic and most important function is to create a viral online marketing campaign that is either creative, enlightening, humorous or informative enough that people wish to share with their friends, family, and colleagues.  To find out more on how to successfully market your idea as a viral online marketing campaign contact <a title="Contact WebPaws.com for Viral Marketing Campaign Services" href="http://www.webpaws.com/contact/" target="_blank">WebPaws.com</a></p>
<p><strong>Viral Marketing<br />
</strong>Viral marketing or viral advertising is a marketing phenomenon that facilitates and encourages people to pass along a marketing message promoting information or products that other customers are compelled to give to other friends, colleagues and family.  By definition viral marketing is a way to promote a service or product exponentially.  When effectively done one person will give it to several people who in turn will promote it to several other people.  This is what makes viral marketing so effective. For instance, if I wrote and e book, and then I forwarded that e-book to 10 people, who in turn forwarded that e-book to 10 people. One hundred people have read that e-book.  Now if it is forwarded that same way just four more times <span class="bigred">ONE MILLION PEOPLE</span> have now read that same e-book.  By definition viral marketing gives the consumer something that they can use for free with the intent of gaining that customer to market other products and to create a brand name awareness.  A great example of an effective viral marketing campaign is Google&#8217;s gmail.  It is a free email service that can only be signed up for by invitation only. The only way you can receive an invitation is by another user.  Another great example for the definition of viral marketing is by creating an e-book or an e-zine.  When an ebook or an ezine is effectively written the consumer will want to share it with others who in turn will share it with others as well.  To find out more on how you can create an effective viral marketing campaign for a product or a service click  <a title="Contact WebPaws.com for Viral Marketing Campaign Services" href="http://www.webpaws.com/contact/" target="_blank">WebPaws.com</a>.</p>
<p>Viral marketing uses both non-traditional and unconventional ways to spread a marketing message about what is new and exciting.  Viral marketing takes a marketing concept directly or indirectly related to a product, service or company and passes it on to the public.  People then distribute the viral marketing message exponentially.  This attention-getting viral marketing concept is growing in popularity.  The easiest forum for viral marketing is the Internet using e-mail, websites or blogs.  Aside from consulting or development fees, some of the most successful viral marketing campaigns are low to no cost.  Viral marketing can be broken down into two basic concepts: incentive based and attention getting. The simplest incentive based viral marketing is making a referral to a friend; if they purchase or join, you get a premium of either money, product or a discount.  Attention getting viral marketing gives away a free product or service then markets other services.  Before launching a viral campaign, decide if you can develop the campaign in-house or need to outsource for outside expertise.  Viral marketing is trackable and ever evolving.  New styles and methods of delivery are constantly being developed.  If you put together an offer that is exciting, fresh and appealing, your campaign will more likely be a success!  If you decide to outsource or would need assistance in a viral marketing campaign click <a title="Contact WebPaws.com for Viral Marketing Campaign Services" href="http://www.webpaws.com/contact/" target="_blank">WebPaws.com</a> to find out how.</p>
<p><strong>Viral marketing Information</strong><br />
Viral marketing depends on a high pass-along rate from person to person.   If a large percentage of recipients forward something to a large number  of friends, the overall growth snowballs very quickly.  If the pass-along  numbers get too low, the overall growth quickly fizzles.</p>
<p>At the height of B2C it seemed as if every start-up had a viral component  to its strategy, or at least claimed to have one. However, relatively  few marketing viruses achieve success on a scale similar to Hotmail, widely cited as the first example of viral marketing.</p>
<p>Below is an excellent article written by Frank Fiore, 6-25-99</p>
<h3 style="margin: 0pt; padding: 0pt; color: #000080;">Viral marketing: Spread a cold, catch a customer</h3>
<p>They call it &#8220;viral marketing.&#8221; Having someone else spread the word to drive more visitors to your site.</p>
<p>Let&#8217;s face it. The best kind of marketing is the kind you don&#8217;t have to do yourself. Especially if you&#8217;re a small business on the web with a limited advertising budget. Viral marketing is like it sounds. Call it word-of-mouth, spawning, self-propagation &#8212; organic.</p>
<p>Great new idea, right? Nope. Viral marketing has been around forever. Spreading the word through word-of-mouth was the world&#8217;s first form of marketing. But the Internet has taken this organic from of marketing to new heights by making communications better and communities of people tighter &#8212; thus making word-of-mouth even more effective.</p>
<p>When you use viral marketing as a tool, you&#8217;re using the Net the way it was meant to used. Viral marketing on the Net has a long history. The first use was by Netscape. The small &#8220;Designed for NETSCAPE&#8221; icon was first used as a status symbol by webmasters to show that their site was the latest in web-page design. It didn&#8217;t take Mr. Gates very long to see the power of viral marketing and soon &#8220;Designed for MS Internet Explorer&#8221; icons quickly spawned next to Netscape&#8217;s.</p>
<p>A couple of years later, the creative marketers at Amazon took viral marketing beyond this simple link. When Amazon created the first affiliate program on the Net, they spawned a whole new generation of viral partners eager to promote Amazon&#8217;s book site to their web-site visitors.</p>
<p>Today, they have more than 100,000 affiliates promoting Amazon and gaining a small commission on each sale directed to them.</p>
<p>Affiliate or associate programs are now one of the hottest viral marketing programs on the web. There are hundreds of small, medium and large companies offering their programs to any web site that wants to earn a few extra bucks.</p>
<p>But you don&#8217;t have to have a costly or complex affiliate program to use viral marketing in your business. There are other ways to motivate your customers and visitors to do the marketing for you.</p>
<p>Here are just a few.</p>
<p>• Pass this on, will ya: The granddaddy of the new viral marketing has to be HotMail which soon was copied by Yahoo! and anyone else who had a free e-mail service. It was simple. Attach your URL to every e-mail that your users send out. Before they knew it, HotMail had more e-mail users than the largest ISP. You can do the same. Make sure that every e-mail sent out from your company has your URL on it.</p>
<p>• Tell &#8216;em Sam sent you: Reward your steady visitors for bringing new visitors to your site. Create a special &#8220;referrer program&#8221; that your steady visitors can sign up for. Have them invite their friends to visit and if they do, have them mention the referee&#8217;s e-mail address and the referee earns something free from your site.</p>
<p>• I&#8217;ll scratch your back if you scratch mine: Your site sells cigars. Their site sells humidors. A relationship made in web heaven! Look for sites that sell complementary products or services to your own. Then contact them and offer a reciprocal linking arrangement. You can go even one step further and offer their visitors a discount if they join your referee program.</p>
<p>• Got any good jokes lately?: I don&#8217;t know how many times I&#8217;ve forwarded jokes or scam and virus alerts I received in my e-mail to friends and associates. So, create a funny newsletter or an e-mail alert that someone would pass on to friends.</p>
<p>• Take my site, please!: This is similar to &#8220;Got any good jokes lately&#8221; but in this case you give away your best assets. Don&#8217;t just send out a notice about new content on your site &#8212; send out summaries by e-mail and ask people to forward it on (with copyright and URL attached, of course). A variation on this is to let other sites reprint your content on their site, with appropriate credits and links to yours.</p>
<p>• And the winner is: Create an award for the best sites in your category or subject area. Then send them an e-mail informing them they won the award and where to acquire the award icon to place on their site. I do this with my Mining Co. Online Shopping site.</p>
<p>I award a &#8220;Best of the Net&#8221; to certain worthy sites and ask them to place the &#8220;best of&#8221; icon on their site &#8212; which is then linked back to my site.</p>
<p>The one downside to viral marketing is that you&#8217;re letting others do your marketing for you. Though this will save you money, your message and your brand are in the hands of someone else. There&#8217;s a fine line here of spreading the word and diluting your brand.</p>
<p>The challenge is to exercise some control of how your message is delivered and how others perceive it. But when you master this technique, your message and your site can spread as quickly as the common cold.</p>
<p>Finally, don&#8217;t expect a viral marketing program to pay off immediately. Like a real virus, viruses don&#8217;t become epidemics until they reach critical mass. Your virus must propagate through the host population until it reaches a certain threshold of visibility and scale.</p>
<p>Think of it this way. Suppose a real-world virus doubles every year. In the first few years it&#8217;s scarcely detectable. But within a few years after that it suddenly becomes an epidemic. You should understand that you&#8217;re playing the same game. Viral marketing takes time. So be patient, be fruitful &#8212; and go out and multiply.</p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/">Viral Marketing &#8211; definitions and information</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral%20Marketing%20-%20definitions%20and%20information&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;t=Viral%20Marketing%20-%20definitions%20and%20information" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral%20Marketing%20-%20definitions%20and%20information" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral%20Marketing%20-%20definitions%20and%20information" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral%20Marketing%20-%20definitions%20and%20information" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral%20Marketing%20-%20definitions%20and%20information" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;title=Viral%20Marketing%20-%20definitions%20and%20information" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Viral%20Marketing%20-%20definitions%20and%20information&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;bm_description=Viral%20Marketing%20-%20definitions%20and%20information&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F63%2Fviral-marketing-web-online-offline-definitions%2F&amp;=Viral%20Marketing%20-%20definitions%20and%20information" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
<span class="facebook-like"><fb:like layout="box_count" show_faces="false" width="45" href="http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/"></fb:like></span>]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/63/viral-marketing-web-online-offline-definitions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Classic ASP header redirect (302 Object Moved)</title>
		<link>http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/</link>
		<comments>http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 21:24:27 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[302]]></category>
		<category><![CDATA[303]]></category>
		<category><![CDATA[classic]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=6</guid>
		<description><![CDATA[ASP makes it easy to redirect a user to another page. This is a useful trick for redirecting users after form submissions, protecting content on your site by redirecting users to a login page, and pointing an old page address to a new one. Classic ASP header redirect (302 Object Moved) At the top of [&#8230;] <a class="more-link" href="http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/">&#8595; Read the rest of this entry...</a><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/">Classic ASP header redirect (302 Object Moved)</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic+ASP+header+redirect+%28302+Object+Moved%29&amp;summary=ASP+makes+it+easy+to+redirect+a+user+to+another+page.+This+is+a%0Auseful+trick+for+redirecting+users+after+form+submissions%2C+protecting%0Acontent+on+your+site+by+redirecting+users+to+a+login+page%2C+and+pointing%0Aan+old+page+address+to+a+new+one.%0AClassic+ASP+header+redirect+%28302+Object+Moved%29%0AAt+the+top+of+your+ASP+document+%28before+any+%5B%26hellip%3B%5D+%3Ca+class%3D%22more-link%22+href%3D%22http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F%22%3E%26darr%3B+Read+the+rest+of+this+entry...%3C%2Fa%3E&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p>ASP makes it easy to redirect a user to another page. This is a<br />
useful trick for redirecting users after form submissions, protecting<br />
content on your site by redirecting users to a login page, and pointing<br />
an old page address to a new one.</p>
<p><strong>Classic ASP header redirect (302 Object Moved)</strong></p>
<p>At the top of your ASP document (before any HTML code), use the following code:</p>
<p><code>&lt;% Response.Redirect("default.asp") %&gt;</code></p>
<p>This example shows how to redirect a user to a page on your own<br />
site, in the same directory as your redirect page. If you wanted to<br />
redirect a user to a completely different website, simply use the full<br />
URL:</p>
<p><code>&lt;% Response.Redirect("http://www.yourdomain.com") %&gt;</code></p>
<p>The Response.Redirect declarative gives an “Object Moved,” or Status<br />
Code 302 header response. If you want to permanently point an old page<br />
address to a new one using ASP, see below.</p>
<p><strong>Serving a permanent redirect (301) header status code</strong></p>
<p>There may be an instance where you want to point an old page to a<br />
new location. This can be accomplished in ASP by including specific<br />
header information in your code snippet. The following example serves a<br />
301 Redirect (“301 Moved Permanently”) to anyone who accesses the page.</p>
<p>&lt;%<br />
Response.Status=&#8221;301 Moved Permanently&#8221;<br />
Response.AddHeader &#8220;Location&#8221;, &#8220;http://www.thenewdomain.com&#8221;<br />
%&gt;</p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/">Classic ASP header redirect (302 Object Moved)</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;t=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;title=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;bm_description=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F6%2Fclassic-asp-header-redirect-302-object-moved%2F&amp;=Classic%20ASP%20header%20redirect%20%28302%20Object%20Moved%29%20" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
<span class="facebook-like"><fb:like layout="box_count" show_faces="false" width="45" href="http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/"></fb:like></span>]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/6/classic-asp-header-redirect-302-object-moved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostBack in ASP.net &#8211; passing variables on postback</title>
		<link>http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/</link>
		<comments>http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 21:22:35 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[postback]]></category>
		<category><![CDATA[variable]]></category>
		<category><![CDATA[viewstate]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=5</guid>
		<description><![CDATA[Be aware that if you set a variable before postback and then check it after postback it will be reset, use Session or ViewState to keep variable values regardless of postback state. ViewState is a collection bag which holds key value pairs of changed control attributes. You can also utilize it to store your own [&#8230;] <a class="more-link" href="http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/">&#8595; Read the rest of this entry...</a><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/">PostBack in ASP.net &#8211; passing variables on postback</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack+in+ASP.net+%26%238211%3B+passing+variables+on+postback&amp;summary=Be+aware+that+if+you+set+a+variable+before+postback+and+then+check+it+after+postback+it+will+be+reset%2C+use+Session+or+ViewState+to+keep+variable+values+regardless+of+postback+state.%0AViewState+is+a+collection+bag+which+holds+key+value+pairs+of+changed+control+attributes.+You+can+also+utilize+it+to+store+your+own+values+%5B%26hellip%3B%5D+%3Ca+class%3D%22more-link%22+href%3D%22http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F%22%3E%26darr%3B+Read+the+rest+of+this+entry...%3C%2Fa%3E&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p>Be aware that if you set a <span class="highlight">variable</span> before <span class="highlight">postback</span> and then check it after <span class="highlight">postback</span> it will be reset, use Session or ViewState to keep <span class="highlight">variable</span> values regardless of <span class="highlight">postback</span> state.</p>
<p>ViewState is a collection bag which holds key value pairs of changed control attributes. You can also utilize it to store your own values which will persist though a Page&#8217;s postbacks. ViewState is a member of Page, which means it is globably accessible throughout your Page. The ViewState is loaded early on in the Page creation (life cycle), and towards the end it is encrypted and outputed into the HTML. Therefore, when you add some data to the ViewState on the first page load, that data is being stored (encrypted) in the __ViewState hidden field you&#8217;ll find in the HTML source.  When <span style="text-decoration: underline;">t</span>he page is loaded again (after you click the button), that value is decrypted and loaded into the ViewState bag, which means you&#8217;ll be able to access it.</p>
<p>Remember to always check if the value you are getting (either from ViewState or Session) is null or not. If not, you&#8217;re users will get the infamous &#8220;Object reference not sent to an instance of an object.&#8221; exception.</p>
<p>ViewState is the mechanism that allows state values to be preserved across page postbacks.</p>
<p>Because of the stateless nature of web pages, regular page member variables will not maintain their values across postbacks.  When we need a page variable to maintain its value across page post backs, we can use ViewState to store that value.  Values stored in ViewState will be serialized and sent to the client browser as the value of a hidden form input.  When you view the page source (in your browser) of a page the uses ViewState, you may see this hidden viewstate input which will look something like this:</p>
<p>&lt;input type=&#8221;hidden&#8221; name=&#8221;__VIEWSTATE&#8221; id=&#8221;__VIEWSTATE&#8221; value=&#8221;/wQPDwAKMTn1ODM5Rj&#8230;&#8230;.&#8221; /&gt;</p>
<p>This single hidden field contains all the viewstate values for all the page controls. This is an important aspect of viewstate that you need to consider.</p>
<h3>Example</h3>
<p>One simple way to store small values in viewstate is to use a property instead of a member variable.  This property can use viewstate to store its value rather than a member variable that would lose the value over a postback. For example, storing an Integer in viewstate can be accomplished like this:</p>
<p>VB</p>
<div style="padding: 5px; color: black; font-family: Courier New; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
<p style="margin: 0px;"><span style="color: blue;">Public</span> <span style="color: blue;">Property</span> SomeInteger() <span style="color: blue;">As</span> <span style="color: blue;">Integer</span></p>
<p style="margin: 0px;"><span style="color: blue;">Get</span></p>
<p style="margin: 0px;"><span style="color: blue;">Dim</span> o <span style="color: blue;">As</span> <span style="color: blue;">Object</span> = ViewState(<span>&#8220;SomeInteger&#8221;</span>)</p>
<p style="margin: 0px;"><span style="color: blue;">If</span> <span style="color: blue;">Not</span> o <span style="color: blue;">Is</span> <span style="color: blue;">Nothing</span> <span style="color: blue;">Then</span> <span style="color: blue;">Return</span> <span style="color: blue;">DirectCast</span>(o, <span style="color: blue;">Integer</span>)</p>
<p style="margin: 0px;"><span style="color: blue;">Return</span> 0 <span style="color: green;">&#8216;a default</span></p>
<p style="margin: 0px;"><span style="color: blue;">End</span> <span style="color: blue;">Get</span></p>
<p style="margin: 0px;"><span style="color: blue;">Set</span>(<span style="color: blue;">ByVal</span> value <span style="color: blue;">As</span> <span style="color: blue;">Integer</span>)</p>
<p style="margin: 0px;">ViewState(<span>&#8220;SomeInteger&#8221;</span>) = value</p>
<p style="margin: 0px;"><span style="color: blue;">End</span> <span style="color: blue;">Set</span></p>
<p style="margin: 0px;"><span style="color: blue;">End</span> <span style="color: blue;">Property</span></p>
<p style="margin: 0px;">
</div>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/">PostBack in ASP.net &#8211; passing variables on postback</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;t=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;title=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;bm_description=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F5%2Fpostback-in-aspnet-passing-variables-on-postback%2F&amp;=PostBack%20in%20ASP.net%20-%20passing%20variables%20on%20postback" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
<span class="facebook-like"><fb:like layout="box_count" show_faces="false" width="45" href="http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/"></fb:like></span>]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/5/postback-in-aspnet-passing-variables-on-postback/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Allow page redirect from an asp:linkbutton in an Ajax ModalPopupExtender</title>
		<link>http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/</link>
		<comments>http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 01:11:21 +0000</pubDate>
		<dc:creator>webpaws</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[ModalPopupExtender]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[VB]]></category>

		<guid isPermaLink="false">http://webpaws.com/blog/?p=4</guid>
		<description><![CDATA[Inside a modalpopupextender panel, you need to add and set the UseSubmitBehavior to false for the OK/Cancel controls to be enabled with postback to behave outside of the ajax control. Example: &#60;asp:LinkButton ID="OkButton" runat="server" Text="Button Text" UseSubmitBehavior="false" PostBackUrl="product.aspx?id=3" /&#62; You can also use OnClick in the button to perform an action outside of ajax with [&#8230;] <a class="more-link" href="http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/">&#8595; Read the rest of this entry...</a><br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/">Allow page redirect from an asp:linkbutton in an Ajax ModalPopupExtender</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
]]></description>
			<content:encoded><![CDATA[<!--S-ButtonZ 1.1.5 Start--><!--S-ButtonZ 1.1.5 End--><div class="linkedin_share_container" style="float:right;margin:0px 0px 10px 10px"><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow+page+redirect+from+an+asp%3Alinkbutton+in+an+Ajax+ModalPopupExtender&amp;summary=Inside+a+modalpopupextender+panel%2C+you+need+to+add+and+set+the+UseSubmitBehavior+to+false+for+the+OK%2FCancel+controls+to+be+enabled+with+postback+to+behave+outside+of+the+ajax+control.%0AExample%3A%0A%0A%26lt%3Basp%3ALinkButton+ID%3D%22OkButton%22+runat%3D%22server%22+Text%3D%22Button+Text%22+UseSubmitBehavior%3D%22false%22+PostBackUrl%3D%22product.aspx%3Fid%3D3%22+%2F%26gt%3B%0A%0AYou+can+also+use+OnClick+in+the+button+to+perform+an+action+outside+of+ajax+with+UseSubmitBehavior%3D%22false%22.+&amp;source=WebPaws.com" onclick="return popupLinkedInShare(this.href,'console',400,570)" class="linkedin_share_button"><img src="http://webpaws.com/blog/wp-content/plugins/linkedin-share-button/buttons/01.png" alt="" /></a></div><p><span style="color: #000000; font-size: small;">Inside a modalpopupextender panel, you need to add and set the UseSubmitBehavior to false for the OK/Cancel controls to be enabled with postback to behave outside of the ajax control.</span></p>
<p><span style="font-size: small; text-decoration: underline;">Example:</span><br />
<code><br />
<span style="color: #000000; font-size: small;">&lt;asp:LinkButton ID="OkButton" runat="server" Text="Button Text" UseSubmitBehavior="false" PostBackUrl="product.aspx?id=3" /&gt;</span><br />
</code></p>
<p><span style="color: #000000; font-size: small;">You can also use OnClick in the button to perform an action outside of ajax with UseSubmitBehavior=&#8221;false&#8221;. </span></p>
<br /><a target="_blank" href="http://www.gdstarrating.com/"><img src="http://webpaws.com/blog/wp-content/plugins/gd-star-rating/gfx/powered.png" border="0" width="80" height="15" /></a><br /><p><a href="http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/">Allow page redirect from an asp:linkbutton in an Ajax ModalPopupExtender</a> is a post from: <a href="http://webpaws.com/blog">WebPaws.com</a></p>
<div style="clear:both;">&nbsp;</div>
<div class="sociable">
<span class="sociable_tagline">
<strong>Take a piece of the Web from WebPaws.com:</strong>
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F" title="Facebook" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender&amp;source=WebPaws.com&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F" title="TwitThis" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
	<li><a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;t=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="MySpace" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/myspace.png" title="MySpace" alt="MySpace" class="sociable-hovers" /></a></li>
	<li><a href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="Google Bookmarks" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/google.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a href="http://www.webnews.de/einstellen?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="Webnews" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/webnews.png" title="Webnews" alt="Webnews" class="sociable-hovers" /></a></li>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://www.ekudos.nl/artikel/nieuw?url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;title=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="eKudos" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/ekudos.png" title="eKudos" alt="eKudos" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender&amp;body=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://extension.fleck.com/?v=b.0.804&amp;url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F" title="Fleck" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/fleck.gif" title="Fleck" alt="Fleck" class="sociable-hovers" /></a></li>
	<li><a href="http://hype.yeebase.com/submit/http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F" title="Hype" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/hype.png" title="Hype" alt="Hype" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mister-wong.de/addurl/?bm_url=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;bm_description=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender&amp;plugin=soc" title="MisterWong" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/misterwong.png" title="MisterWong" alt="MisterWong" class="sociable-hovers" /></a></li>
	<li><a href="javascript:window.print();" title="Print" onfocus="sociable_description_link(this, 'Print this article!')" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/printer.png" title="Print" alt="Print" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F" title="Technorati" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwebpaws.com%2Fblog%2F4%2Fallow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender%2F&amp;=Allow%20page%20redirect%20from%20an%20asp%3Alinkbutton%20in%20an%20Ajax%20ModalPopupExtender" title="YahooMyWeb" rel="nofollow" target="_blank"><img src="http://webpaws.com/blog/wp-content/plugins/sociable-zyblog-edition/images/yahoomyweb.png" title="YahooMyWeb" alt="YahooMyWeb" class="sociable-hovers" /></a></li>
</ul>
</div>
<span class="facebook-like"><fb:like layout="box_count" show_faces="false" width="45" href="http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/"></fb:like></span>]]></content:encoded>
			<wfw:commentRss>http://webpaws.com/blog/4/allow-page-redirect-in-asplinkbutton-in-ajax-modalpopupextender/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

