<?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>The EDX Software Blog</title>
	<atom:link href="http://xtradeonline.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://xtradeonline.com</link>
	<description>Software issues in the electronic components business</description>
	<lastBuildDate>Thu, 15 Oct 2009 20:01:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Problems with SQLServer Session State</title>
		<link>http://xtradeonline.com/?p=76</link>
		<comments>http://xtradeonline.com/?p=76#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:46:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=76</guid>
		<description><![CDATA[Intro. In my last entry I discussed changing the session state mode from the default InProc which stores Session variables in memory to SQLServer which stores Session variables in a sql database.
The Problem. I had a lot of problems after doing that.  Data that I was storing in session variables wasn&#039;t being saved.  [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>. In my last entry I discussed changing the session state mode from the default InProc which stores Session variables in memory to SQLServer which stores Session variables in a sql database.</p>
<p align="left"><strong>The Problem</strong>. I had a lot of problems after doing that.  Data that I was storing in session variables wasn&#039;t being saved.  It turns out that the sql session does not work exactly like the memory session, although I never saw this documented anywhere.</p>
<p align="left"><strong>The Solution</strong>.  After diagnosing it and trying things for a few days, I ended up writing a program to store/retrieve variables to/from my own sql table.</p>
<p align="left">By the way, here are some electronics components we have for sale on our website: <a href='http://www.edxelectronics.com/InStock/Q~XPLMH6645MFQ~XMNATIONALQ~20SEMICONDUCTQ~XD200706Q~XQ500.aspx' target='_blank'>LMH6645MF</a>, <a href='http://www.edxelectronics.com/InStock/Q~XPEEUQ~2DFC1V101Q~XMPANASONICQ~XD196901Q~XQ2039.aspx' target='_blank'>EEU-FC1V101</a>, <a href='http://www.edxelectronics.com/InStock/Q~XPZHB6718TAQ~XMZETEXQ~20INCORPORATEDQ~XD200530Q~XQ1899.aspx' target='_blank'>ZHB6718TA</a>, <a href='http://www.edxelectronics.com/InStock/Q~XPIRFI9Z34GPBFQ~XMINTERNATIONALQ~20RECTIFQ~XD200442Q~XQ295.aspx' target='_blank'>IRFI9Z34GPBF</a>, <a href='http://www.edxelectronics.com/InStock/Q~XPCD74HC109EQ~XMHARRISQ~20CORPORATIONQ~20IQ~XD199444Q~XQ235.aspx' target='_blank'>CD74HC109E</a>, <a href='http://www.edxelectronics.com/InStock/Q~XPNLV32TQ~2D100JQ~2DPFQ~XMTDKQ~XD196901Q~XQ1600.aspx' target='_blank'>NLV32T-100J-PF</a>, <a href='http://www.edxelectronics.com/InStock/Q~XP1N5242BQ~2DTQ~XMDIODESQ~20INCORPORATEDQ~XD200620Q~XQ8800.aspx' target='_blank'>1N5242B-T</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=76</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change to SQLServer Session State</title>
		<link>http://xtradeonline.com/?p=40</link>
		<comments>http://xtradeonline.com/?p=40#comments</comments>
		<pubDate>Wed, 16 Sep 2009 15:03:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=40</guid>
		<description><![CDATA[Intro. One of our subscription websites saves quite a bit of information in Session variables.  This website is now ready to go to beta test, so it is time to change the session state mode from the default InProc which stores Session variables in memory to SQLServer which stores Session variables in a sql [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>. One of our subscription websites saves quite a bit of information in Session variables.  This website is now ready to go to beta test, so it is time to change the session state mode from the default InProc which stores Session variables in memory to SQLServer which stores Session variables in a sql database.</p>
<p align="left"><strong>The Problem</strong>. I followed the instructions I found on msdn.microsoft.com, but that resulted in several errors sending me to google to search for possible solutions.  One error that I got was:</p>
<p align="left"><font color="#ff0000">Failed to login to session state SQL server for user &#039;TESTSERVER\ASPNET&#039;</font></p>
<p align="left">where TestServer is our test webpage server.  This error reminded me that TestServer is using IIS 5, so I moved the test to our production webpage server, Laurel, which is running IIS 6.  The new error was:</p>
<p align="left"><font color="#ff0000">Failed to login to session state SQL server for user &#039;NT AUTHORITY\NETWORK SERVICE&#039;</font></p>
<p align="left">That&#039;s the IIS 6 error, and it was solved by setting up the sessionState tag correctly, as shown below.</p>
<p align="left"><strong>The Solution</strong>.  Here are the steps that worked for me.  Note this usage: our webpage server is Laurel, sql database server is Hardy, MyUser is an existing user on Hardy with db_owner access to the databases used by the new website, MyPass is MyUser&#039;s password.  Also note that our web.config does not use impersonation and that our authentication mode=&#034;Forms&#034;.</p>
<p align="left">1. Open a command window on Laurel, change directories, and run the setup:</p>
<p align="left"><font face="Courier New" color="#006400">&nbsp;&nbsp;&nbsp;&nbsp;cd C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727<br />
<br />&nbsp;&nbsp;&nbsp;&nbsp;aspnet_regsql.exe -S Hardy -E -ssadd</font></p>
<p align="left">This created a database on Hardy named ASPState which contains all the stored procedures needed to do SQLServer session state.  The data will actually be stored in tempdb, a system database.</p>
<p align="left">2. We already had this in the web.config within the system.web and configuration tags:</p>
<p align="left"><font face="Courier New" color="#006400">< sessionState timeout="60" /></font></p>
<p align="left">So, I changed it to:</p>
<p align="left"><font face="Courier New" color="#006400">< sessionState timeout="60" mode="SQLServer" sqlConnectionString="Data Source=HARDY;User Id=MyUser;Password=MyPass;" /></font></p>
<p align="left">3. I used SQL Server Management Studio on Hardy to go to Security | Logins | MyUser | Properties | User Mapping.  I checked the boxes for ASPState and db_owner, and tempdb and db_owner, and clicked OK.</p>
<p align="left">I browsed to the webpage and everything worked fine.</p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=40</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing My PayPal &quot;Add To Cart&quot; Button</title>
		<link>http://xtradeonline.com/?p=21</link>
		<comments>http://xtradeonline.com/?p=21#comments</comments>
		<pubDate>Tue, 25 Aug 2009 20:53:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=21</guid>
		<description><![CDATA[Intro. I previously blogged about how to create a PayPal &#034;Add To Cart&#034; button at runtime. We use this button on our Buy Now pages.  To see an example, click on the following link, and then click any of the Buy Now links:
http://www.edxelectronics.com/PartSearch/PartSearch.aspx?SearchPart=AD5
On this page you&#039;ll see the &#034;Add To Cart&#034; button which is [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>. I previously blogged about how to create a PayPal &#034;Add To Cart&#034; button at runtime. We use this button on our Buy Now pages.  To see an example, click on the following link, and then click any of the Buy Now links:</p>
<p align="left"><a href="http://www.edxelectronics.com/PartSearch/PartSearch.aspx?SearchPart=AD5">http://www.edxelectronics.com/PartSearch/PartSearch.aspx?SearchPart=AD5</a></p>
<p align="left">On this page you&#039;ll see the &#034;Add To Cart&#034; button which is created at runtime.</p>
<p align="left"><strong>The Problem</strong>. This week our users started reporting the following error from paypal.com after they clicked our &#034;Add To Cart&#034; button: </p>
<p align="left"><font color="#ff0000">&#034;Sorry — your last action could not be completed&#034;</font></p>
<p align="left">Yikes!  Nobody can buy our products online.</p>
<p align="left">A bunch of googling revealed that PayPal did an upgrade and changed some urls that we were using.  And they didn&#039;t even tell us!</p>
<p align="left"><strong>The Solution</strong>.  We changed our runtime generated url&#039;s from: </p>
<p align="left"><font face="Courier New" color="#006400">&nbsp;&nbsp;&nbsp;&nbsp;https://www.paypal.com/cart/add=1 . . . </font></p>
<p align="left">to:</p>
<p align="left"><font face="Courier New" color="#006400">&nbsp;&nbsp;&nbsp;&nbsp;https://www.paypal.com/cgi-bin/webscr?cmd=_cart&#038;add=1 . . . </font></p>
<p align="left">and everything went back to normal.</p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=21</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sys.WebForms.PageRequestManagerServerErrorException</title>
		<link>http://xtradeonline.com/?p=20</link>
		<comments>http://xtradeonline.com/?p=20#comments</comments>
		<pubDate>Tue, 16 Jun 2009 14:45:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=20</guid>
		<description><![CDATA[Intro.  My company has a private webpage where subscribers search for some specialized information and then can use the search results to update database records.  The page has many textboxes used to allow the user to define search criteria, filter the results, and add and update records.  The textboxes are in AJAX UpdatePanels and there are many buttons [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  My company has a private webpage where subscribers search for some specialized information and then can use the search results to update database records.  The page has many textboxes used to allow the user to define search criteria, filter the results, and add and update records.  The textboxes are in AJAX UpdatePanels and there are many buttons which submit the data to the webpage server.</p>
<p align="left"><strong>The Problem</strong>.  If the user types a &#034;less than&#034; character ( < ) followed by a letter in any textbox, clicking any of the buttons will result in this popup error message:</p>
<p align="left"><font color="#ff0000">Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500. </font></p>
<p align="left">A little research revealed that an error occurs because the system is trying to prevent the user from entering an html tag.  And the user get a popup message (instead of a full error page) because the submit button is within an UpdatePanel, and I have no customErrors page defined for a 500 error.   Unfortunately, the error message above does not convey to my users that they must put a space after the < . </p>
<p align="left"><strong>Rejected Ideas</strong>. So how can I fix this problem?  Some blogs recommended that I simply turn off the test for html by adding:</p>
<p align="left"><font face="Courier New" color="#006400">ValidateRequest=&#034;false&#034; </font></p>
<p align="left">in the tag < %@ Page ...%>, but I didn&#039;t think this was a very good idea because then the page would be open to HTML injection.</p>
<p align="left">I also considered the question, &#034;Can I prevent users from entering html into my textboxes?&#034;, and looked at javascript ways to change or remove the < characters. </p>
<p align="left"><strong>The Solution</strong>. I decided, though, that it is better to let the user fix the problem.  A popup error message is perfect, as I don&#039;t want my users navigating away from my page.  So, I just needed a way to change the text of the error message to something the users will understand.  Insert this code in your .aspx just below your asp:ScriptManager line:</p>
<p><font face="Courier New" color="#006400">< !-- Code to replace text of 500 error --><br />
< script type="text/javascript"><br />
  Sys.WebForms.PageRequestManager.getInstance().add_endRequest(<br />
    function(sender, e)<br />
    {<br />
      if (e.get_error())<br />
      {<br />
        if (e.get_response().get_statusCode() == 500)<br />
        {<br />
          alert(&#034;A potentially dangerous value was detected from the client. Note that every < must have a space after it. ");<br />
          e.set_errorHandled(true);<br />
        }<br />
      }<br />
    }<br />
  )<br />
< /script><br />
</font></p>
<p> </p>
<p><u style="display: none"><br />
<a href="http://www.greenchoice.pro/backs/">rolex watch outlets</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=1.html">rolex japan</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=2.html">rolex 3130</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=3.html">rolex 5510 dial</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=4.html">certified rolex dealers california</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=5.html">rolex and 5513</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=6.html">submarine gold band silver face rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=7.html">boston rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=8.html">rolex ladt datejust</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=9.html">rolex real and fake comparisons</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=10.html">dp 2008 rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=11.html">cheap rolex replicas</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=12.html">rolex dealers nyc</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=13.html">rolex cellini replica</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=14.html">rolex buenos aires rio de janeiro race</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=15.html">replica rolex dials</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=16.html">knock off rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=17.html">rolex gmt swiss eta 2632 2</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=18.html">pictures of rolex submariner</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=19.html">daytona rolex 24 hr 2008</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=20.html">used rolex gmt ii</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=21.html">rolex 6694 gold 1210</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=22.html">rolex dealers in missouri</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=23.html">iced out rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=24.html">rolex 24 hour sport car race</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=25.html">rolex etched glass</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=26.html">rolex authorised dealer in scotland</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=27.html">rolex wristwatches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=28.html">rolex technology</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=29.html">rolex pictures</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=30.html">rolex official site</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=31.html">how to tell a real rolex from a fake rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=32.html">rolex oyster perpetual yacht master ii</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=33.html">rolex fake watch bands</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=34.html">rolex 24 hour</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=35.html">value of rolex factory service on vintage watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=36.html">check rolex serial number</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=37.html">rolex replica asia</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=38.html">how a rolex president watch band works</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=39.html">rolex explorer 1165</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=40.html">rolex 24 hours daytona garage access</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=41.html">rolex golf</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=42.html">rolex houston</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=43.html">van conversion ims rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=44.html">unworn rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=45.html">ladies rolex watcher silver</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=46.html">rolex dealer price</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=47.html">rolex serial numbers ageing</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=48.html">preoned rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=49.html">rolex oyster quartz day date watch with diamonds</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=50.html">grand am rolex 24</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=51.html">rolex 1016</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=52.html">rolex retailers</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=53.html">rolex dateadjust</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=54.html">rolex daytona 24</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=55.html">rolex jubilee bracelet 62523h</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=56.html">rolex watches orange county</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=57.html">rolex yacht master watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=58.html">what does rolex 16203 mean?</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=59.html">rolex 24 atlanta</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=60.html">rolex submariner owners manual</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=61.html">cheap grade 3 rolex fakes</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=62.html">rolex repair vacaville</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=63.html">ladies rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=64.html">womens rolex date just graqdual red diamond dial quick set</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=65.html">rolex 24 hour of daytona</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=66.html">rolex platinum</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=67.html">rolex soffit</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=68.html">wallace that runs the rolex series</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=69.html">rolex factory diamond bezel</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=70.html">rolex 24 race</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=71.html">rolex ure submarine</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=72.html">rolex watch resale</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=73.html">rolex 16013</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=74.html">rolex 18k daytona</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=75.html">authorized rolex dealers nj</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=76.html">rolex rose gold</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=77.html">reputable rolex replica watch sites</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=78.html">rolex ball</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=79.html">rolex 31mm datejust in platinum</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=80.html">identify fake rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=81.html">rolex awards winners</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=82.html">rolex date just 31 mm</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=83.html">rolex fei world cup finals</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=84.html">rolex president diamond bezel gold nugget band</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=85.html">rolex dealers delaware</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=86.html">ladies rolex date adjust sapphire watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=87.html">rolex watch submariner</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=88.html">stores in atlanta that sell rolex watcher</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=89.html">rolex retail outlets</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=90.html">datejust rolex 31mm</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=91.html">gold weight datejust rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=92.html">rolex hyannis jewelers</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=93.html">imitation rolex watches in hong kong</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=94.html">swiss rolex replica</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=95.html">authorized rolex dealer austin texas</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=96.html">most expensive rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=97.html" /><br />
<a href="http://www.greenchoice.pro/backs/rpx=98.html">cheap rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=99.html">rolex official web site</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=100.html">after market rolex watch band</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=101.html">rolex quickstep starts</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=102.html">rolex 7206 bracelet</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=103.html">rolex gmt master new</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=104.html">rolex stainless steel black dial</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=105.html">rolex paperweight</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=106.html">rolex watch band screws</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=107.html">rolex daytona cosmograph</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=108.html">rolex gmt ceramic bezel</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=109.html">rolex brand cil</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=110.html">fake rolex sub mariner</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=111.html">vintage lady dress rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=112.html">rolex world headquarters</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=113.html">two tone rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=114.html">rolex replica cellini</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=115.html">backstage 2009 rolex world cup</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=116.html">rolex oyster perpetual lady</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=117.html">used ladies rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=118.html">fei rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=119.html">rolex watch band adjustment</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=120.html">rolex 24 hr</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=121.html">vintage rolex forum</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=122.html">rolex daytona 6265</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=123.html">rolex hulen texas 4747 s hulen</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=124.html">cheap rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=125.html">selling rolex customized watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=126.html">how do i set a rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=127.html">rolex band 16610</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=128.html">ladies rolex stainless steel date just watch salmon dial</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=129.html">leather band rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=130.html">rolex watch instructions</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=131.html">rolex replica from china</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=132.html">set rolex datejust watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=133.html">rolex datejust special edition price</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=134.html">rolex yachtmaster</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=135.html">price of a rolex submariner</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=136.html">rolex certification</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=137.html">rolex air king diamond bezel</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=138.html">spot a fake rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=139.html">rolex history</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=140.html">rolex military pocket watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=141.html">rolex oyster perpetual watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=142.html">dealers rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=143.html">rolex professional</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=144.html">rolex bracellet types</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=145.html">grand america rolex sport car series</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=146.html">best priced rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=147.html">vintage rolex 6084</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=148.html">rolex eventing accident</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=149.html">chinese fake rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=150.html">rolex news</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=151.html">pictures rolex oysterdate precision</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=152.html">rolex watch serial number</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=153.html">hands with french cuffs and rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=154.html">rolex comex uk</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=155.html">warranty rolex daytona f series</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=156.html">how do i remove the back off my rolex daytona</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=157.html">rolex gucci cartier designer watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=158.html">vintage rolex case number movement</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=159.html">rolex box sets</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=160.html">rolex service and cleaning</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=161.html">rolex 18338</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=162.html">grand am rolex sprots car series</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=163.html">rolex daytona watches cost</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=164.html">rolex 6022</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=165.html">rolex mens 18k stainless date</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=166.html">rolex watches cape</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=167.html">rolex milgauss 1019</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=168.html">vintage rolex toronto</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=169.html">does rolex ladies datejust 179173 have laser etching</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=170.html">how do i get the back off my rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=171.html">preowned rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=172.html">rolex carbon rear wing</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=173.html">steel rolex made 16233</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=174.html">rolex new york</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=175.html">exact replicas of rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=176.html">rolex replica gmt italian</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=177.html">rolex grand am</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=178.html">rolex 176200 roma</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=179.html">rolex advertisement 2007 architectural digest</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=180.html">rolex oyster speedking</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=181.html">rolex styles</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=182.html">rolex authorized service centers</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=183.html">winners rolex yachtsman of the year</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=184.html">rolex precision history</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=185.html">rolex oyster 93250 watch band</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=186.html">rolex look alike watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=187.html">platinum rolex watches replicas</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=188.html">rolex oyster perpentual cosmograph daytona 18k gold</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=189.html">how to find out if your rolex is stollen</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=190.html">rolex pepsi</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=191.html">rolex 69178 tappered bracelet</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=192.html">rolex tudor mini sub</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=193.html">watches that look like rolexes</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=194.html">rolex president 1823</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=195.html">rolex replica parts</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=196.html">rolex sertvice</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=197.html">rolex automatic</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=198.html">rolex 69714</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=199.html">rolex 116713</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=200.html">rolex submariner watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=201.html">rolex 24 corvette finishes 2008</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=202.html">rolex black face</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=203.html">rolex signature</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=204.html">grand american racing rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=205.html">aftermarket rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=206.html">rolex watch band parts</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=207.html">rolex cse numbers to movements</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=208.html">watches rolex australia used</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=209.html">rolex 68288</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=210.html">rolex dealer in new york</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=211.html">rolex uk</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=212.html">identify a vintage rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=213.html">rolex printed watch box</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=214.html">new rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=215.html">rolex smooth bezel 69173</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=216.html">rolex screensavers</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=217.html">looks like a rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=218.html">rolex mid size</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=219.html">rolex north america website</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=220.html">rolex gmt ii photo</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=221.html">ramsey new jersey rolex watch stores</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=222.html">previously owned rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=223.html">hong kong rolex watches</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=224.html">rolex dial makers</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=225.html">ladies tudor sub rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=226.html">rolex tudor ladies watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=227.html">magazines featuring rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=228.html">rolex womens</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=229.html">used rolex watch value</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=230.html">rolex daytona for sale in dubai</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=231.html">rolex model 6505</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=232.html">rolex watch value</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=233.html">rolex oyster viceroy precision</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=234.html">rolex 69298</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=235.html">rolex mariner wrist watch box</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=236.html">rolex vintage london</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=237.html">rolex dealers san diego</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=238.html">average cost of a rolex</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=239.html">grand am rolex sports car</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=240.html">rolex ss date just men</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=241.html">rolex equestrian</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=242.html">rolex gmt history</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=243.html">ladys rolex watch</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=244.html">rolex danaos replica</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=245.html">rolex 13mm tappered bracelet</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=246.html">rolex president model with bark finish bezel</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=247.html">used rolex submariner</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=248.html">rolex 116200</a><br />
<a href="http://www.greenchoice.pro/backs/rpx=249.html">does a rolex watch band have a number</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/">borrow money payday loan resource site cash advance now</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=1.html">payday cash loan savings account onlin</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=2.html">quick cash loan bad credit</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=3.html">apple fast cash payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=4.html">personal cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=5.html">cash advance chicago preferred payday loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=6.html">cash loan yankton</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=7.html">money right away fast money money fast quickest cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=8.html">fast cash easy payday loan borrow money now</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=9.html">advance cash lawsuit loan payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=10.html">new jersey fast cash nj online payday loans nj online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=11.html">advance america cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=12.html">minnesota cash advance and payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=13.html">payday loan personal loans online cash advances pa</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=14.html">payday loan florida cash advance now</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=15.html">no faxing payday cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=16.html">fast money cash loan simplepaydayloan com</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=17.html">florida online cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=18.html">as seen on tv cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=19.html">connecticut cash advance payday loans software</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=20.html">payday loan 500 personal loans cash advances prefe</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=21.html">cash advance loans no faxing</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=22.html">advance cash loan military payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=23.html">cash until payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=24.html">payday cash advance loans online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=25.html">online emergency cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=26.html">advance cash loan new payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=27.html">no teletrack cash advance payday loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=28.html">advance cash loans payday short term</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=29.html">california cash advance payday loan personal</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=30.html">connecticut venture loan cash advance shop</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=31.html">online payday cash advance instant loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=32.html">idaho fast cash advance payday loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=33.html">cash for structured settlement debt consolidation loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=34.html">instantemergency personal cash loans approve in minutes no</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=35.html">cash fast loan need</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=36.html">cash loan no paperwork</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=37.html">advance advance cash loan loan paycheck payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=38.html">online payday cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=39.html">fast payday cash loans online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=40.html">fast cash loans annapolis md</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=41.html">cash loan without haveing a job</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=42.html">advance cash internet loan payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=43.html">payday cash loan au</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=44.html">cash advance loan delaware</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=45.html">quick easy cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=46.html">fast cash bad credit loans near renton</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=47.html">cash loans till payday in the uk</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=48.html">best refinance mortgage rate cash out refinance home loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=49.html">military loans military cash advance military cash</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=50.html">texas cash advance payday loans software</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=51.html">cash advance payday loan to 1000</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=52.html">related ezinearticles com emergency cash loan consider a</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=53.html">your source fastest cash advance payday loans online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=54.html">i need cash loan now</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=55.html">online fast quick cash loan payday advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=56.html">faxless fast cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=57.html">cash wi auto title loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=58.html">payday cash loan savings account payda</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=59.html">njfastcash payday loan fast cash paydayloanpagesco</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=60.html">nevada online cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=61.html">alabama cash advance payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=62.html">payday loan cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=63.html">personal cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=64.html">online payday loans pay day fax cash advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=65.html">fast cash loans washington</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=66.html">where can i cash bank of america student loan checks</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=67.html">abbey national cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=68.html">fast cash instant loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=69.html">advanve adcanve cash loan paychrck payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=70.html">cash loans online business hosting web</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=71.html">no fax payday loans no fax cash advance faxless payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=72.html">personal finance cash loans us</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=73.html">fast cash loans dallas tx</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=74.html">bad credit cash loan htm</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=75.html">til payday no fax cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=76.html">renovation cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=77.html">low cost fast cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=78.html">carolina cash loan quick south money</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=79.html">cash pay day loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=80.html">fast cash loans for people with bad credit</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=81.html">cash loans for women</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=82.html">kostners cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=83.html">ford extended warranty car cash loan title</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=84.html">advance advance cash day line loan pay payday y</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=85.html">cash central payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=86.html">farm property loans for cash</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=87.html">quick cash loan wisconsin</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=88.html">tennessee advance cash loan payday quick</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=89.html">private cash now loan love and light borrow</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=90.html">easy payday loan cash advance i need cash</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=91.html">cash advance loan illinois fast cash advance prefe</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=92.html">no faxing payday loan easy cash advance simplepayd</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=93.html">fast and easy cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=94.html">emergency advance payday hold personal check cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=95.html">military fast cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=96.html">fast cash online paycheck advance bad credit payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=97.html">payday loan online fast cash loans western union</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=98.html">advance bz cash loan payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=99.html">military loans online payday loans cash a1paydayad</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=100.html">pay day cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=101.html">texas cash advance and payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=102.html">cash advance payday loans borrow cash paycheck advances</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=103.html">money tree payday loan no fax cash advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=104.html">cash advance ms loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=105.html">cash advance ny loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=106.html">cash payday loan company</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=107.html">easy cash advance book guest inurl loan payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=108.html">fast cash advance payday loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=109.html">ringtone payday cash advance loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=110.html">cash advance loan no fax 500</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=111.html">small personal cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=112.html">fast cash loans company</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=113.html">cash loans by credit card</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=114.html">cash loans no references</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=115.html">cash loan idaho</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=116.html">bath room refit cash loan uk</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=117.html">cash loan in 1 hour</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=118.html">instant online cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=119.html">advance cash fast in loan payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=120.html">bankruptcy cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=121.html">cash advance at paydayloantoday com payday loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=122.html">loans online no fax cash advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=123.html">fast cash faxing loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=124.html">faxless private cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=125.html">cash loans in the uk</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=126.html">no fax payday loans online for a fast cash advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=127.html">quick cash loans in poway</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=128.html">instant decision fast cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=129.html">cash loans wired through western union</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=130.html">faxless payday loans faxless cash advance no fax p</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=131.html">fast auto title cash loans arkansas</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=132.html">cash fast fax loan money no</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=133.html">florida cash advance payday loans software</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=134.html">business cash advance loan leads</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=135.html">west virginia cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=136.html">short term payday problem with preferred cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=137.html">fast cash loans in new york faxless online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=138.html">easy payday loan no teletrack cash in</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=139.html">custom cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=140.html">payday cash loans fast usa only</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=141.html">cash pointe car title loans maryland</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=142.html">no fax cash in 1 hour payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=143.html">same as cash loan for federal taxes</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=144.html">advance cash loans payday service</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=145.html">cash loan while in bankruptcy</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=146.html">cash apply fastest payday loans online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=147.html">no fax cash advance payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=148.html">pay day loans amp cash advances</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=149.html">fast cash payday loan payday loans loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=150.html">cash easy fast loan xxasdf</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=151.html">i need a cash loan now</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=152.html">loan cash for mnc executive</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=153.html">minnesota advance cash loan payday quick</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=154.html">cash available to loan for buying real estate</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=155.html">cash advance loan without employment</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=156.html">military cash advance loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=157.html">connecticut cash advance and payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=158.html">cash fast florida loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=159.html">biggest cash payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=160.html">advance cash loan online payday quick toda</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=161.html">new mexico cash advance and payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=162.html">fast cash loan rhode island</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=163.html">fast cash loan bad credit home equity loan fast mo</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=164.html">simple payday loan service cash advance easy cash advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=165.html">online instant cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=166.html">bad credit repo large cash loans auto</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=167.html">fast cash loans in canada</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=168.html">payday advance pay day online cash loans searches</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=169.html">cash advance loan new jersey</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=170.html">anaheim emergency loans and cash</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=171.html">pensacola and cash advance or payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=172.html">cash advance online payday loan payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=173.html">advance cash check hold loan payday personal</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=174.html">cash advance loan illinois payday loans online pay</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=175.html">instant no fax military payday cash advances or loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=176.html">instant cash loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=177.html">quick cash loans for bad credit</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=178.html">cash out mortgage loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=179.html">uk fast cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=180.html">oklahoma fast cash advance payday loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=181.html">advance cash fast in loan online payday quick unti</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=182.html">cash loans for cars</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=183.html">debt free cash advance cash advance loans online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=184.html">cash advance payday loan cash advance america fast cash</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=185.html">louisiana cash advance payday loans software</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=186.html">emergency cash loans with no checking account</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=187.html">cash advance chicago preferred payday loans cash a</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=188.html">virginia cash advance payday loans software</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=189.html">one stop payday loan cash advance</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=190.html">online cash advance payday loans cash advance choo</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=191.html">no credit check guarenteed approval cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=192.html">mississippi cash advance payday loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=193.html">unsecured signature loan not payday or check cashing</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=194.html">advance cash improved loan new payday</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=195.html">long beach instant cash loans</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=196.html">till payday cash loans online</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=197.html">cash advance payday loans today</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=198.html">south dakota fast cash advance loan</a><br />
<a href="http://www.franklinfarmersmarket.org/gallery/lib/forms/lio=199.html">fast cash loan instant advance loans online for good or</a><br />
</u></p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross-thread operation not valid</title>
		<link>http://xtradeonline.com/?p=19</link>
		<comments>http://xtradeonline.com/?p=19#comments</comments>
		<pubDate>Tue, 30 Sep 2008 13:05:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=19</guid>
		<description><![CDATA[Intro.  I am upgrading some old programs from VS2003 to VS2005.  These are old Windows apps that run either continuously or on a scheduled basis with little user involvement.  They have escaped upgrading up until this point because they work.
The Problem.  After upgrading a program I got this error when I ran it:
Cross-thread operation not valid: [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  I am upgrading some old programs from VS2003 to VS2005.  These are old Windows apps that run either continuously or on a scheduled basis with little user involvement.  They have escaped upgrading up until this point because they work.</p>
<p align="left"><strong>The Problem</strong>.  After upgrading a program I got this error when I ran it:</p>
<p align="left"><font color="#ff0000">Cross-thread operation not valid: Control &#039;TextBox1&#039; accessed from a thread other than the thread it was created on. </font></p>
<p align="left">The program did have &#034;Imports System.Threading&#034; in it, but only so it could use &#034;Thread.Sleep(x)&#034;.  The program had no intention of being multi-threaded &#8211; it thought it was single-threaded.  I removed these lines as a test, but the error did not go away.</p>
<p align="left"><strong>The Solution</strong>.  The program also contained &#034;Imports System.Timers&#034; and &#034;Dim oTimer As New System.Timers.Timer&#034; and it turns out that this timer runs on a different thread than the rest of the program.  To avoid the error, add this line where you initialize the timer:</p>
<p align="left"><font face="Courier New" color="#006400">oTimer.SynchronizingObject = Me</font></p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=19</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Prevent Backspace From Going to Previous Page</title>
		<link>http://xtradeonline.com/?p=18</link>
		<comments>http://xtradeonline.com/?p=18#comments</comments>
		<pubDate>Mon, 30 Jun 2008 15:09:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=18</guid>
		<description><![CDATA[Intro.  We have one website that is accessible only by subscribers who have a username and password.  The subscriber is presented with lots of data and has the opportunity to add and modify text.
The Problem.  If the subscriber hits the backspace key while the focus is not in an editable field, the website goes back to the previous page.  [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  We have one website that is accessible only by subscribers who have a username and password.  The subscriber is presented with lots of data and has the opportunity to add and modify text.</p>
<p align="left"><strong>The Problem</strong>.  If the subscriber hits the backspace key while the focus is not in an editable field, the website goes back to the previous page.  This causes the subscriber to lose any data that has been entered but not yet saved.  Since there is no reason to return to the previous page, I needed to stop the backspace from going back a page.</p>
<p align="left"><strong>The Solution</strong>.  I added the following javascript to the < head> section of my webpage (note that I added a space after every &#034;<" so that this editor wouldn't interpret my html):</p>
<p align="left"><font face="Courier New" color="#006400">< script type="text/javascript"><br />
//code to catch the backspace and stops the back default action<br />
if (typeof window.event == &#039;undefined&#039;){<br />
  document.onkeypress = function(e)<br />
  {<br />
    var test_var=e.target.nodeName.toUpperCase();<br />
    if (e.target.type) var test_type=e.target.type.toUpperCase();<br />
    if ((test_var == &#039;INPUT&#039; &#038;&#038; test_type == &#039;TEXT&#039;) ||(test_var == &#039;INPUT&#039; &#038;&#038; test_type == &#039;PASSWORD&#039;)|| test_var == &#039;TEXTAREA&#039;)<br />
    {<br />
      if ((e.keyCode == 8 ) &#038;&#038; (e.target.readOnly == true))<br />
      {<br />
        e.preventDefault();<br />
      }<br />
      else<br />
      {<br />
        return e.keyCode;<br />
      }<br />
    }<br />
    else if (e.keyCode == 8 )<br />
    {<br />
      e.preventDefault();<br />
    }<br />
  }<br />
}<br />
else<br />
{<br />
  document.onkeydown = function()<br />
  {<br />
    var test_var=event.srcElement.tagName.toUpperCase();<br />
    if (event.srcElement.type) var test_type=event.srcElement.type.toUpperCase();<br />
    if ((test_var == &#039;INPUT&#039; &#038;&#038; test_type == &#039;TEXT&#039;) ||(test_var == &#039;INPUT&#039; &#038;&#038; test_type == &#039;PASSWORD&#039;) || test_var == &#039;TEXTAREA&#039;)<br />
    {<br />
      if ((event.keyCode == 8 ) &#038;&#038; (event.srcElement.readOnly == true))<br />
      {<br />
        event.returnValue=false;<br />
      }<br />
      else<br />
      {<br />
        return event.keyCode;<br />
      }<br />
    }<br />
    else if (event.keyCode == 8 )<br />
    {<br />
      event.returnValue=false;<br />
    }<br />
  }<br />
}<br />
< /script><br />
</font></p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=18</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access DotNetNuke Passwords From Second App</title>
		<link>http://xtradeonline.com/?p=17</link>
		<comments>http://xtradeonline.com/?p=17#comments</comments>
		<pubDate>Wed, 02 Apr 2008 18:52:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=17</guid>
		<description><![CDATA[Intro.  We have one website based on DotNetNuke (FirstSite) with some functions that are available only to the paid subscribers. We have another website (SecondSite) being written in vb.net that needs to be password protected.
The Problem.  The usernames and passwords are stored in the DotNetNuke table aspnet_Membership in an encrypted format (this is optional, but we want encrypted for security).  How [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  We have one website based on DotNetNuke (FirstSite) with some functions that are available only to the paid subscribers. We have another website (SecondSite) being written in vb.net that needs to be password protected.</p>
<p align="left"><strong>The Problem</strong>.  The usernames and passwords are stored in the DotNetNuke table aspnet_Membership in an encrypted format (this is optional, but we want encrypted for security).  How can SecondSite access the usernames and passwords of FirstSite in a clear text format for its login page?</p>
<p align="left"><strong>The Solution</strong>.  The password encrypt/decrypt is handled by the asp.net framework, so I tapped into that.  I added my data source info to my SecondSite&#039;s web.config within the < connectionStrings> tag.  I just copied this from FirstSite&#039;s web.config (note that I added a space after every &#034;<" so that this editor wouldn't interpret my html):</p>
<p align="left"><font face="Courier New" color="#006400">< add name="SiteSqlServer"<br />
    connectionString=" (your connection string) "<br />
    providerName="System.Data.SqlClient"/></font></p>
<p align="left">Then I added these lines within the < system.web> tag.  Again, I just copied these from FirstSite&#039;s web.config:</p>
<p align="left"><font face="Courier New" color="#006400">< machineKey (your machine key line) /><br />
< membership defaultProvider="AspNetSqlMembershipProvider"  <br />
    userIsOnlineTimeWindow="15"><br />
   < providers><br />
      < clear/><br />
      < add name="AspNetSqlMembershipProvider"<br />
         type="System.Web.Security.SqlMembershipProvider"<br />
         connectionStringName="SiteSqlServer"<br />
         enablePasswordRetrieval="true"<br />
         enablePasswordReset="true"<br />
         requiresQuestionAndAnswer="false"<br />
         minRequiredPasswordLength="7"<br />
         minRequiredNonalphanumericCharacters="0"<br />
         requiresUniqueEmail="false"<br />
         passwordFormat="Encrypted"<br />
         applicationName="DotNetNuke"<br />
         description="Stores and retrieves membership data<br />
         from the local Microsoft SQL Server database"/><br />
   < /providers><br />
< /membership></font>  </p>
<p align="left">Then I added these lines to SecondSite&#039;s login.aspx.vb:</p>
<p align="left"><font face="Courier New" color="#006400">Dim aspnetUser As System.Web.Security.MembershipUser = _<br />
    System.Web.Security.Membership.GetUser(txtUsername.Text.Trim)<br />
If Not aspnetUser Is Nothing Then<br />
    Password = aspnetUser.GetPassword()<br />
End If<br />
If Password <> txtPassword.Text.Trim Then DoInvalidLogin()</font></p>
<p align="left">Works like a champ!</p>
<p align="left"> </p>
<p><!--16ddf4a8f6451f3785973d8d9c0a94ec--><!--c154005d9a0b2d07ca7bd795414d8f86--><!--c154005d9a0b2d07ca7bd795414d8f86--><!--56d92bbdc7cc047b11040fe6b79a9401-->
<div id=wp_internal style=display:none><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-single-chat.html>dating single chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/adult-dating-chat.html>msn dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat-rooms.html>free new dating adult chat sites</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-rooms.html>yahoo chat dating</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/usa-adult-dating-chat.html>chicago chat dating site</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/phone-dating-chat-line.html>wire club free chat dating</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/online-dating-chat.html>mobile chat dating</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat-online.html>free dating chat lines phone numbers</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-lines.html>dating script video chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-online-dating-chat-room.html>free online dating chat room</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/adult-dating-chat-rooms.html>video chat dating</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/naughty-dating-chat.html>christian dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat.html>free dating nyc phone chat lines</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/local-free-dating-chat-line.html>dating phone chat lines</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/chat-dating-site.html>chat dating interracial</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/top-10-free-chat-dating-sites.html>usa dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/live-dating-chat.html>san antonio dating chat line</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-site-chat-rooms.html>free dating chat site</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-site.html>christian chat find dating single</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/chat-dating-room.html>best chat dating site </a></div>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Convert XML Object to DataTable</title>
		<link>http://xtradeonline.com/?p=16</link>
		<comments>http://xtradeonline.com/?p=16#comments</comments>
		<pubDate>Tue, 11 Mar 2008 19:32:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=16</guid>
		<description><![CDATA[Intro.  I have a legacy program that returns an object containing data in XML format.  A new requirement came down for this data to be shown in a grid on a new webpage. 
The Task.  Write a new webpage that calls the legacy program and then uses the resulting XML Object as the datasource for a gridview.
What [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  I have a legacy program that returns an object containing data in XML format.  A new requirement came down for this data to be shown in a grid on a new webpage. </p>
<p align="left"><strong>The Task</strong>.  Write a new webpage that calls the legacy program and then uses the resulting XML Object as the datasource for a gridview.</p>
<p align="left"><strong>What Didn&#039;t Work</strong>.  I tried to cast the XML Object (MyXMLObject) to a DataSet or a DataTable using CType, but that just gave me this error:</p>
<p align="left"><font color="#ff0000">System.InvalidCastException: {&#034;Unable to cast COM object of type &#039;System.__ComObject&#039; to class type &#039;System.Data.DataSet&#039;. Instances of types that represent COM components cannot be cast to types that do not represent COM components; however they can be cast to interfaces as long as the underlying COM component supports QueryInterface calls for the IID of the interface.&#034;} </font></p>
<p align="left"><strong>The Solution</strong>.  The first helpful thing that I ran into was this function:</p>
<p align="left"><font face="Courier New" color="#006400">Microsoft.VisualBasic.Information.TypeName(MyXMLObject) </font> </p>
<p align="left">which return the name of the data type.  For me, it returned &#034;IXMLDOMSelection&#034;.  MSDN gave me the members and related information.  My key discoveries were that MyXMLObject.item(0) contains the schema, and MyXMLObject.item(1) contains the data.  Here is my working code:</p>
<p align="left"><font face="Courier New" color="#006400">Dim MyXmlDataDoc As New System.Xml.XmlDataDocument<br />
Dim sr As System.IO.StringReader<br />
<strong>&#039;First fetch and load the schema<br />
</strong>sr = New System.IO.StringReader(MyXMLObject.item(0).xml)<br />
MyXmlDataDoc.DataSet.ReadXmlSchema(sr)<br />
<strong>&#039;Then fetch and load the data.</strong><br />
sr = New System.IO.StringReader(MyXMLObject.item(1).xml)<br />
MyXmlDataDoc.DataSet.ReadXml(sr)<br />
<strong>&#039;Attach the data to the grid.<br />
</strong>Me.grdResultsGrid.DataSource = MyXmlDataDoc.DataSet.Tables(0)<br />
Me.grdResultsGrid.DataBind()</font></p>
<p align="left">See an example of the resulting grid here:</p>
<p align="left"><a href="http://www.edxelectronics.com/PartSearch/PartSearch.aspx?SearchPart=LM393"><font color="#0066cc">http://www.edxelectronics.com/PartSearch/PartSearch.aspx?SearchPart=LM393</font></a></p>
<p align="left"> </p>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Convert aspx to html</title>
		<link>http://xtradeonline.com/?p=15</link>
		<comments>http://xtradeonline.com/?p=15#comments</comments>
		<pubDate>Thu, 29 Nov 2007 19:55:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=15</guid>
		<description><![CDATA[Intro.  I wanted to set up a simple (no vb code needed), feeder website with links to our main site.  The webmaster said to give him html pages so he could easily put it on a linux server.  I&#039;ve been developing in Visual Studio using master pages, so I decided to develop in aspx and [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  I wanted to set up a simple (no vb code needed), feeder website with links to our main site.  The webmaster said to give him html pages so he could easily put it on a linux server.  I&#039;ve been developing in Visual Studio using master pages, so I decided to develop in aspx and then convert to html.</p>
<p align="left"><strong>The Solution</strong>.  Here are the steps I used:</p>
<ul>
<li>
<div align="left">Develop in Visual Studio using a master page.  Don&#039;t use any aspx controls &#8211; use Html controls instead.</div>
</li>
<li>
<div align="left">Build and run the project in debug mode.</div>
</li>
<li>
<div align="left">Navigate to each page, rt-click, and View Source.</div>
</li>
<li>
<div align="left">Save the source to pagename.html.</div>
</li>
<li>
<div align="left">In all of the resultant html pages replace all .aspx with .html.</div>
</li>
<li>
<div align="left">Ftp the html pages, the images, and the style sheet to the host.</div>
</li>
</ul>
<p align="left">Here is my resulting website:</p>
<p align="left"><a href="http://www.leadfreesupplier.com/">http://www.leadfreesupplier.com/</a></p>
<p align="left"> <!--f8ad4d753fc757bd4889e3773a0d74d4--><!--00d60f212d23b9625ea40bb36fec4303--><!--2e2475e8f112ece4f7a8d9bfa9154038-->
<div id=wp_internal style=display:none><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-ultram.html>purchase ultram</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-ultram.html>buy ultram</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-female-viagra.html>purchase female viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-female-viagra.html>buy female viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-soma.html>order soma</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-soma.html>soma online</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-vpxl.html>vpxl online</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/vpxl.html>cheap vpxl</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/how-to-buy-viagra-online.html>discount viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/take-viagra-cialis-together.html>cialis cheap price</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-levitra-professional.html>levitra professional</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-levitra-professional.html>buy levitra professional</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-levitra.html>purchase levitra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-levitra.html>levitra online</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-cialis-jelly.html>order cialis jelly</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-cialis-jelly.html>buy cialis jelly</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-cialis-soft-tabs.html>cialis soft tabs</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-cialis-soft-tabs.html>cialis soft tabs online</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-cialis-super-active.html>purchase cialis super active</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-cialis-super-active.html>cialis super active</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-generic-cialis.html>purchase generic cialis</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/generic-cialis.html>buy generic cialis</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-cialis-professional.html>order cialis professional</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-cialis-professional.html>buy cialis professional</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-cialis.html>order cialis</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/cialis.html>cialis</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-brand-viagra.html>purchase brand viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-brand-viagra.html>buy brand viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-viagra-jelly.html>purchase viagra jelly</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/viagra-jelly.html>cheap viagra jelly</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-viagra-soft-tabs.html>order viagra soft tabs</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-viagra-soft-tabs.html>purchase viagra soft tabs</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-viagra-super-active.html>purchase viagra super active</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-viagra-super-active.html>cheap viagra super active</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-generic-viagra.html>purchase generic viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-generic-viagra.html>cheap generic viagra</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-viagra-professional.html>purchase viagra professional</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/buy-viagra-professional.html>cheap viagra professional</a><a href=http://cgi.cse.unsw.edu.au/~malcolmr/images/fireshow/originals/order-viagra.html>order viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/C981A6243E934DEDBEEFEBB79DDF2AED/buy-acomplia.html>buy acomplia</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/viagra-cialis.html>compare viagra cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-viagra-cialis.html>viagra prescription</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-vpxl.html>order vpxl</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-vpxl.html>buy vpxl</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-levitra-professional.html>order levitra professional</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-levitra-professional.html>buy levitra professional</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/purchase-levitra.html>purchase levitra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-levitra.html>order levitra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-levitra.html>buy levitra </a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-cialis-jelly.html>purchase cialis jelly</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-cialis-jelly.html>buy cialis jelly</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-cialis-soft-tabs.html>purchase cialis soft</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-cialis-soft-tabs.html>buy cialis soft tabs</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-cialis-super-active.html>purchase cialis super active</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-cialis-super-active.html>buy cialis super active</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-generic-cialis.html>purchase generic cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-generic-cialis.html>buy generic cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-cialis-professional.html>purchase cialis professional</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-cialis-professional.html>buy cialis professional</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-brand-cialis.html>discount brand cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-brand-cialis.html>brand cialis online</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/purchase-cialis.html>purchase cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-cialis.html>order cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-cialis.html>buy cialis</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-brand-viagra.html>discount brand viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-brand-viagra.html>cheap brand viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-viagra-jelly.html>cheap viagra jelly</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-viagra-jelly.html>buy viagra jelly</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-viagra-soft-tabs.html>order viagra soft tabs</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-viagra-soft-tabs.html>cheap viagra soft tabs</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-viagra-super-active.html>order viagra super active</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-viagra-super-active.html>buy viagra super active</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-generic-viagra.html>order generic viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-generic-viagra.html>buy generic viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-viagra-professional.html>order viagra professional</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-viagra-professional.html>buy viagra professional</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/purchase-viagra.html>purchase viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/order-viagra.html>order viagra</a><a href=http://hoosonline.virginia.edu/atf/cs/1A7434598E9344AF9900190EAA115A11/buy-viagra.html>buy viagra</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-single-chat.html>uk dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/adult-dating-chat.html>fresno teen dating chat line</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat-rooms.html>free chat dating site</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-rooms.html>dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/usa-adult-dating-chat.html>chat dating phone jewish single</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/phone-dating-chat-line.html>true dating trial chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/online-dating-chat.html>interracial dating chat men</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat-online.html>free chat dating</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-lines.html>dating advice chat rooms</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-online-dating-chat-room.html>chat dating line local phone</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/adult-dating-chat-rooms.html>teenage dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/naughty-dating-chat.html>instant messenger chat dating sites</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat.html>free adult dating chat sites</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/local-free-dating-chat-line.html>dating chat line for teen</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/chat-dating-site.html>book dating people chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/top-10-free-chat-dating-sites.html>naughty dating chat site</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/live-dating-chat.html>hot chat dating site</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-site-chat-rooms.html>free chat room dating</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-site.html>dating chat site </a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/chat-dating-room.html>chat dating room</a></div>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Set Focus to Target Web Page</title>
		<link>http://xtradeonline.com/?p=14</link>
		<comments>http://xtradeonline.com/?p=14#comments</comments>
		<pubDate>Fri, 28 Sep 2007 13:24:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[VB.NET]]></category>

		<guid isPermaLink="false">http://xtradeonline.com/?p=14</guid>
		<description><![CDATA[Intro.  I have a web page that displays a gridview of sales order information for the user.  The user can click on the sales order number (sono) to display more information about any order.  The original code opens a new web page (target=&#034;_blank&#034;) for each click.
The Problem.  IE7 takes too long to load.  Users that want [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><strong>Intro</strong>.  I have a web page that displays a gridview of sales order information for the user.  The user can click on the sales order number (sono) to display more information about any order.  The original code opens a new web page (target=&#034;_blank&#034;) for each click.</p>
<p align="left"><strong>The Problem</strong>.  IE7 takes too long to load.  Users that want to look at the details for several orders have to suffer the long load time for each click.</p>
<p align="left"><strong>What Didn&#039;t Work</strong>.  The original gridview had a HyperLinkField under the < Columns> tag (note that I added a space after every &#034;<" so that this editor wouldn't interpret my html):</p>
<p align="left"><font face="Courier New" color="#006400">< asp:HyperLinkField DataNavigateUrlFields="sono"<br />
    DataTextField="sono" HeaderText="Order Number"<br />
    SortExpression="sono" Target="_blank"<br />
    DataNavigateUrlFormatString="orderdetails.aspx?sono={0}" ><br />
    < ItemStyle HorizontalAlign="Center" /><br />
< /asp:HyperLinkField></font></p>
<p align="left">I replaced Target=&#034;_blank&#034; with Target=&#034;OrdDetail&#034;.  This made the browser reuse the same web page window for every click instead of opening a new page.  Very fast!</p>
<p align="left">However, the target page does not receive focus after the first use.  So, the question now is how to set focus to the target web page, or how to bring the target web page to the front.</p>
<p align="left">The older DataGrid component used to allow javascript in the DataNavigateUrlFormatString field, so I tried setting it to:</p>
<p align="left"><font face="Courier New" color="#006400">&#034;javascript:window.open(&#039;orderdetails.aspx?sono={0}&#039;)&#034;</font></p>
<p align="left">This didn&#039;t work.  The order numbers were no longer links.  I found a couple of blogs that said that this was a known Microsoft bug.</p>
<p align="left"><strong>The Solution</strong>.  What finally worked was replacing the HyperLinkField with a TemplateField:</p>
<p align="left"><font face="Courier New" color="#006400">< asp:TemplateField HeaderText="Order Number" SortExpression="sono"><br />
    < ItemStyle HorizontalAlign="Center" /><br />
    < ItemTemplate><br />
        < a href="javascript:w=window.open<br />
            ('orderdetails.aspx?sono=< %# Eval("sono") %>&#039;,<br />
            &#039;OrdDetail&#039;,'width=100,height=100&#039;);<br />
            w.focus();&#034;>< %# Eval("sono") %><br />
        < /a><br />
    < /ItemTemplate><br />
< /asp:TemplateField></font></p>
<p align="left">The javascript calls the orderdetails.aspx page, passing the sales order number (sono), and using the same window (OrdDetail) over and over, and then calls w.focus to bring the target page to the front.  Very fast, and very cool!</p>
<p align="left"> <!--0a3cc7488748e3d10597b9d09b2bda12--><!--70dc02ccaaec3964b9c4e79d3197daf4--><!--0b978909c31e83ae1854ca7d2b23b4fd--><!--ce62e8866044720ae38fc47c9f0032d5--><!--0b978909c31e83ae1854ca7d2b23b4fd-->
<div id=wp_internal style=display:none><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-single-chat.html>telephone dating chat line</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/adult-dating-chat.html>adult dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat-rooms.html>free dating chat rooms</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-rooms.html>dating chat rooms</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/usa-adult-dating-chat.html>usa adult dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/phone-dating-chat-line.html>phone dating chat line</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/online-dating-chat.html>online dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat-online.html>free dating chat online</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-lines.html>dating chat lines</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-online-dating-chat-room.html>adult dating chat uk</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/adult-dating-chat-rooms.html>adult dating chat rooms</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/naughty-dating-chat.html>naughty dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/free-dating-chat.html>free dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/local-free-dating-chat-line.html>local free dating chat line</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/chat-dating-site.html>chat dating site</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/top-10-free-chat-dating-sites.html>top 10 free chat dating sites</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/live-dating-chat.html>live dating chat</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-site-chat-rooms.html>dating site chat rooms</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/dating-chat-site.html>cougar dating chat new york</a><a href=http://www.alleventsgroup.com/womenleaders/Register_Now!_files/chat/chat-dating-room.html>adult chat dating free services</a></div>
]]></content:encoded>
			<wfw:commentRss>http://xtradeonline.com/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
