<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>ASP Free Forums - ASP Help, ASP Tutorials, ASP Programming, ASP Code, ASP Hosting</title>
		<link>http://forums.aspfree.com/</link>
		<description>ASP Free is the place for programmers to get ASP related help, code, tutorials, programming, hosting, and development information.</description>
		<language>en</language>
		<lastBuildDate>Thu, 20 Jun 2013 11:09:49 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://forums.aspfree.com/images/misc/rss.png</url>
			<title>ASP Free Forums - ASP Help, ASP Tutorials, ASP Programming, ASP Code, ASP Hosting</title>
			<link>http://forums.aspfree.com/</link>
		</image>
		<item>
			<title>query help</title>
			<link>http://forums.aspfree.com/sql-development-6/query-help-538625.html</link>
			<pubDate>Thu, 20 Jun 2013 07:54:58 GMT</pubDate>
			<description>Dear all, 
 
I have following tables 
 
TABLE : A 
 
ENTERPRISE_MAIN_CODE    ENTERPRISE_SUB_CODE    ENTERPRISE_DESCRIPTION 
1                                                 0                                     A 
2                                                 0                                 ...</description>
			<content:encoded><![CDATA[<div>Dear all,<br />
<br />
I have following tables<br />
<br />
TABLE : A<br />
<br />
ENTERPRISE_MAIN_CODE    ENTERPRISE_SUB_CODE    ENTERPRISE_DESCRIPTION<br />
1                                                 0                                     A<br />
2                                                 0                                     B<br />
3                                                 0                                     C<br />
4                                                 0                                     D<br />
5                                                 0                                     E<br />
6                                                 0                                     F<br />
7                                                 0                                     G<br />
8                                                 0                                     H<br />
9                                                 0                                      I<br />
<br />
TABLE : B<br />
<br />
ID_NO            ENTERPRISE_MAIN_CODE        ENTERPRISE_SUB_CODE<br />
1                                  1                                     1<br />
2                                  1                                     2<br />
3                                  7                                     1<br />
4                                  4                                     1<br />
5                                  4                                     1    <br />
6                                  6                                     1<br />
7                                  6                                     5<br />
<br />
<br />
TABLE : C<br />
ID_NO            ENTERPRISE_ID_NO        ENTERPRISE_DATE        ENTERPRISE_AMT<br />
1                             1                                20130109                     1000<br />
1                             2                                20130315                     2000    <br />
2                             3                                20120120                     3000<br />
2                             4                                20120305                     4000<br />
3                             5                                20141111                     5000<br />
4                             6                                20130115                     6000<br />
5                             7                                20130320                     7000<br />
<br />
<br />
user inputs only month and year: for example 201303.<br />
<br />
the date format is yyyymmdd<br />
<br />
o/p details: it has 4 parts which are explained below<br />
<br />
1. User should see the count and the amount of the selected year and month (201303 i.e 2013 march data)<br />
<br />
2. the previous year of the selected year and month ( count and the amount ) (201203 i.e 2012 march data)<br />
<br />
3. the first month of selected year till the selected year's selected month (count and the amount) ( 20130101 - 20130330  )<br />
<br />
4. the first month of previous year till the previosu year's  month  (count and the amount) ( i.e 20120101 - 20120330 )<br />
<br />
<br />
The expected op is as follows<br />
<br />
    <br />
                                                 1.                                    2.                              3.                             4.        <br />
                                <br />
ENTERPRISE_DESCRIPTION        count    amt                  count    amt               count    amt             count    amt    <br />
        A                                       1        2000                 1          4000               2         3000             2        7000<br />
        B                                        0          0                     0           0                  0            0                0        0<br />
        C                                       0           0                     0           0                  0           0                 0        0<br />
        D                                       1           7000               0             0                 2           13000           0       0<br />
        E                                       0           0                    0             0                0            0                 0        0  <br />
        F                                       0           0                    0             0                0             0                0         0   <br />
        G                                      0           0                    0             0                0              0               0         0   <br />
        H                                      0          0                     0             0                 0              0              0         0  <br />
        I                                        0         0                     0            0                0               0              0         0<br />
<br />
 <br />
<br />
Thanks<br />
<br />
Nick</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/sql-development-6/">SQL Development</category>
			<dc:creator>nicklibee</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/sql-development-6/query-help-538625.html</guid>
		</item>
		<item>
			<title>Beginner query question</title>
			<link>http://forums.aspfree.com/microsoft-access-help-18/beginner-query-question-538624.html</link>
			<pubDate>Thu, 20 Jun 2013 02:33:48 GMT</pubDate>
			<description>I truly apologize if this is anything that has been asked before.  I tried to use the search function, but could not turn up anything on the keywords I used. 
 
I have a database of patient information - with tables recording dates they had particular services done.  I am trying to build a query to...</description>
			<content:encoded><![CDATA[<div>I truly apologize if this is anything that has been asked before.  I tried to use the search function, but could not turn up anything on the keywords I used.<br />
<br />
I have a database of patient information - with tables recording dates they had particular services done.  I am trying to build a query to indicate whether or not each patient has had two of a particular service done within the year a certain amount of days apart.  The easiest way to come up with this number seems to be to take the first date and the last date and subtract the difference.  However, when building the query if I select &quot;first&quot; from the &quot;total&quot; drop down to appear in one column in the completed query, and &quot;last&quot;in another, and then use DateDiff to subtract the differences - it is not actually pulling the first date and the last date, it's pulling random ones - some records show up right and some wrong.  (Initially this is how I was instructed to do it from someone who basically does this for a living).  My first thought is that it wasn't actually pulling it based on the date itself but when the date was recorded in the table - can anyone confirm if this assumption is correct?  To remedy this, I decided to use min and max instead.  This actually works for the most part.  If there is any way to link each date to a field in a table recording the corresponding test result that would solve all my problems.  Lastly, I ran into problems trying to constrain the query to one year in the criteria box, using &gt;=#6/19/2012#  Instead of completely ignoring those dates of service recorded before the indicated date and pulling a new minimum after 6/19/2012, it seems to be ignoring all PATIENTS that do not meet the criteria of their minimum date of service being after this date.  I hope that makes sense.<br />
<br />
The goal of the project is to keep it simple, allowing physicians to simply update the records in each table, change the date constraints in the query, and spit out a reports every month for a quality improvement meeting.  I'm in an internship working on this project that didn't even start out as an Access database to begin with, with minimal Access experience from a job in high school.  Simply put... I'm confused. :confused:  I would appreciate any direction and help I can get. Thanks everyone.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-access-help-18/">Microsoft Access Help</category>
			<dc:creator>healthstudent</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-access-help-18/beginner-query-question-538624.html</guid>
		</item>
		<item>
			<title>Help with Batch Script FindStr to search for a string and matching line</title>
			<link>http://forums.aspfree.com/windows-scripting-64/help-batch-script-findstr-search-string-matching-line-538623.html</link>
			<pubDate>Thu, 20 Jun 2013 02:21:43 GMT</pubDate>
			<description><![CDATA[Hi Gurus, 
 
I've been having some problem in using FIND or FINDSTR command to find a particular string in a log file and return its output with the matching string along with 1 line above and 1 line below the matching line. 
 
So far, this is the only command that I've tried. I've tried to search...]]></description>
			<content:encoded><![CDATA[<div>Hi Gurus,<br />
<br />
I've been having some problem in using FIND or FINDSTR command to find a particular string in a log file and return its output with the matching string along with 1 line above and 1 line below the matching line.<br />
<br />
So far, this is the only command that I've tried. I've tried to search online, but couldn't find anything useful.<br />
<br />
findstr /n &quot;ERROR DETECTED&quot; c:\Log.txt<br />
<br />
Sample log data (Log.txt):<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">1371524155&nbsp; Tue Jun 18 10:55:55 2013<br />
1371524160&nbsp; Tue Jun 18 10:56:00 2013<br />
1371524165&nbsp; Tue Jun 18 10:56:05 2013<br />
ERROR DETECTED<br />
&nbsp;1371523243&nbsp; Tue Jun 18 10:40:43 2013<br />
1371523248&nbsp; Tue Jun 18 10:40:48 2013<br />
1371523253&nbsp; Tue Jun 18 10:40:53 2013</code><hr />
</div>Desire output (Example):<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">1371524160&nbsp; Mon Jun 10 08:50:01 2013<br />
ERROR DETECTED<br />
&nbsp;1371523241&nbsp; Mon Jun 10 08:20:41 2013<br />
<br />
1371524165&nbsp; Tue Jun 18 10:56:05 2013<br />
ERROR DETECTED<br />
&nbsp;1371523243&nbsp; Tue Jun 18 10:40:43 2013</code><hr />
</div>There maybe more than 1 occurance of the string &quot;ERROR DETECTED&quot; in the log file as it can contain a lot of data. So the script should be able to handle it and output the multiple result of the searched string as shown in the above example.<br />
<br />
Appreciate for your kind help.<br />
<br />
Thank you.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/windows-scripting-64/">Windows Scripting</category>
			<dc:creator>PeterTheSeeker</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/windows-scripting-64/help-batch-script-findstr-search-string-matching-line-538623.html</guid>
		</item>
		<item>
			<title>Trying to get my Ajax AutoCompleteExtender to read from my SQL CE database..</title>
			<link>http://forums.aspfree.com/net-development-11/trying-get-my-ajax-autocompleteextender-read-my-sql-ce-database-538622.html</link>
			<pubDate>Wed, 19 Jun 2013 23:27:13 GMT</pubDate>
			<description><![CDATA[Hello everyone, 
 
I've got an interesting challenge I've been wrestling with for a few days now. Despite extensive research, I cannot seem to find a good solution to the problem.  
 
I've got an  Ajax AutoCompleteExtender pointing to a text box. As you are hopefully aware of, this control...]]></description>
			<content:encoded><![CDATA[<div>Hello everyone,<br />
<br />
I've got an interesting challenge I've been wrestling with for a few days now. Despite extensive research, I cannot seem to find a good solution to the problem. <br />
<br />
I've got an  Ajax AutoCompleteExtender pointing to a text box. As you are hopefully aware of, this control functions by suggesting results as the user types a search in the text box. I actually followed a simple tutorial to implement the control into my ASP.NET page..<a href="http://www.asp.net/ajaxlibrary/act_AutoComplete_Simple.ashx" target="_blank">Creating a Simple Auto-Complete TextBox - ASP.NET Ajax Library</a>..Upon completion, I was able to get suggested items to populate as I was typing. This is because the item strings are were stored in the code behind. Instead, I want populate items, from a table, in a specific row, from an SQL CE database. <br />
I've seen tutorials on how to get the data from a regular SQL database, located elsewhere on the the computer but none showing how to get the data from a CE database. <br />
<br />
Here is my ASP.NET code:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;ajaxToolkit:ToolkitScriptManager ID=&quot;ToolkitScriptManager1&quot; runat=&quot;server&quot; EnablePageMethods=&quot;true&quot;&gt;<br />
&lt;/ajaxToolkit:ToolkitScriptManager&gt;<br />
<br />
&lt;asp:TextBox ID=&quot;ClientSearch&quot; runat=&quot;Server&quot; Width=&quot;227px&quot;&gt;<br />
&nbsp; &nbsp; &lt;/asp:TextBox&gt;<br />
&nbsp; &nbsp; &lt;ajaxToolkit:AutoCompleteExtender<br />
&nbsp; &nbsp; &nbsp; &nbsp; CompletionListCssClass=&quot;AutoExtender&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; CompletionListItemCssClass=&quot;AutoExtenderListItem&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; CompletionListHighlightedItemCssClass=&quot;AutoExtenderItemHighlighted&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; ID=&quot;AutoCompleteExtender1&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; TargetControlID=&quot;ClientSearch&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; runat=&quot;server&quot; <br />
&nbsp; &nbsp; &nbsp; &nbsp; ServiceMethod=&quot;GetCompletionList&quot; <br />
&nbsp; &nbsp; &nbsp; &nbsp; MinimumPrefixLength=&quot;1&quot;<br />
&nbsp; &nbsp; &nbsp; &nbsp; UseContextKey=&quot;True&quot;&gt;<br />
&nbsp; &nbsp; &lt;/ajaxToolkit:AutoCompleteExtender&gt;<br />
&nbsp; &nbsp; &lt;asp:Button ID=&quot;SearchSubmit&quot; runat=&quot;Server&quot; Text=&quot;Search&quot; /&gt;</code><hr />
</div>Here is the code behind (Were I need to change something to make it get data from the CE database (C#):<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">using System.Data;<br />
using System.Data.SqlClient;<br />
using System.Collections.Generic;<br />
using System.Configuration;<br />
using System;<br />
<br />
<br />
public partial class _Default : System.Web.UI.Page<br />
<br />
{<br />
&nbsp; &nbsp; protected void Page_Load(object sender, EventArgs e)<br />
&nbsp; &nbsp; {<br />
<br />
&nbsp; &nbsp; }<br />
<br />
&nbsp; &nbsp; [System.Web.Script.Services.ScriptMethod()]<br />
&nbsp; &nbsp; [System.Web.Services.WebMethod]<br />
&nbsp; &nbsp; public static List&lt;string&gt; GetCompletionList(string prefixText)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings[&quot;ConnectionString&quot;].ToString());<br />
&nbsp; &nbsp; &nbsp; &nbsp; con.Open();<br />
&nbsp; &nbsp; &nbsp; &nbsp; SqlCommand cmd = new SqlCommand(&quot;select * from Current where Name like @Name+'%'&quot;, con);<br />
&nbsp; &nbsp; &nbsp; &nbsp; cmd.Parameters.AddWithValue(&quot;@Name&quot;, prefixText);<br />
&nbsp; &nbsp; &nbsp; &nbsp; SqlDataAdapter da = new SqlDataAdapter(cmd);<br />
&nbsp; &nbsp; &nbsp; &nbsp; DataTable dt = new DataTable();<br />
&nbsp; &nbsp; &nbsp; &nbsp; da.Fill(dt);<br />
&nbsp; &nbsp; &nbsp; &nbsp; List&lt;string&gt; Names = new List&lt;string&gt;();<br />
&nbsp; &nbsp; &nbsp; &nbsp; for (int i = 0; i &lt; dt.Rows.Count; i++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Names.Add(dt.Rows[i][1].ToString());<br />
&nbsp; &nbsp; &nbsp; &nbsp; }<br />
&nbsp; &nbsp; &nbsp; &nbsp; return Names;<br />
&nbsp; &nbsp; }<br />
<br />
<br />
}</code><hr />
</div>Finally, here is the Connection String, located in my Web.config file. I would hop to somehow use this same string in the code behind file:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &lt;connectionStrings&gt;<br />
&nbsp; &nbsp; &lt;add name=&quot;ConnectionString&quot; connectionString=&quot;Data Source=|DataDirectory|\Clients.sdf&quot; providerName=&quot;System.Data.SqlServerCe.4.0&quot;/&gt;<br />
&nbsp; &nbsp; &lt;add name=&quot;ClientsEntities&quot; connectionString=&quot;metadata=res://*/App_Code.Model.csdl|res://*/App_Code.Model.ssdl|res://*/App_Code.Model.msl;provider=System.Data.SqlServerCe.4.0;provider connection string=&amp;quot;data source=|DataDirectory|\Clients.sdf&amp;quot;&quot; providerName=&quot;System.Data.EntityClient&quot;/&gt;<br />
&nbsp; &lt;/connectionStrings&gt;</code><hr />
</div>When I run the current code above, I get an exception (I assume it is because the code is trying to reach a database in SQL, rather than a CE database):<br />
<br />
A network-related or instance-specific error occurred while establishing a connection to SQL Server.<br />
The server was not found or was not accessible.<br />
Verify that the instance name is correct and that SQL Server is configured to allow remote connections.<br />
<br />
From dome forums I've read, I could change the SqlConnection in the code behind to SqlCeConnection. I actually tried this but apparently I'm also missing a name space. <br />
<br />
Any Ideas?</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/net-development-11/">.NET Development</category>
			<dc:creator>codeman061988</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/net-development-11/trying-get-my-ajax-autocompleteextender-read-my-sql-ce-database-538622.html</guid>
		</item>
		<item>
			<title>path not found error</title>
			<link>http://forums.aspfree.com/asp-development-5/path-not-found-error-538621.html</link>
			<pubDate>Wed, 19 Jun 2013 18:50:47 GMT</pubDate>
			<description><![CDATA[I'm bran new to ASP.  Background info.  I've been set up on a server.  I've one line of code that's throwing an error "path not found".  Is it because I'm on a server and need to type in the location a different way? 
 
Code: 
 
Set peoplefile=FileSys.OpenTextFile( "Z:\vreid\gbpeople.txt",8,true)]]></description>
			<content:encoded><![CDATA[<div>I'm bran new to ASP.  Background info.  I've been set up on a server.  I've one line of code that's throwing an error &quot;path not found&quot;.  Is it because I'm on a server and need to type in the location a different way?<br />
<br />
Code:<br />
<br />
Set peoplefile=FileSys.OpenTextFile( &quot;Z:\vreid\gbpeople.txt&quot;,8,true)</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/asp-development-5/">ASP Development</category>
			<dc:creator>vreid</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/asp-development-5/path-not-found-error-538621.html</guid>
		</item>
		<item>
			<title>Let discuss various prospects of search engine optimization</title>
			<link>http://forums.aspfree.com/seo-services-70/let-discuss-various-prospects-search-engine-optimization-538620.html</link>
			<pubDate>Wed, 19 Jun 2013 08:42:13 GMT</pubDate>
			<description>When I came here at SEO section of this forum I never found any live discussion on the topic of search engine optimization. As Google has just rolled out lots of website from organic search results after latest penguin 2.0 update what would be next text techniques of webmaster to rank higher on...</description>
			<content:encoded><![CDATA[<div>When I came here at SEO section of this forum I never found any live discussion on the topic of search engine optimization. As Google has just rolled out lots of website from organic search results after latest penguin 2.0 update what would be next text techniques of webmaster to rank higher on Google and beat competitors?<br />
<br />
Expecting useful and interesting answers from you mates.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/seo-services-70/">SEO Services</category>
			<dc:creator>Click SSL</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/seo-services-70/let-discuss-various-prospects-search-engine-optimization-538620.html</guid>
		</item>
		<item>
			<title>Iis arr</title>
			<link>http://forums.aspfree.com/microsoft-iis-12/iis-arr-538619.html</link>
			<pubDate>Wed, 19 Jun 2013 08:15:31 GMT</pubDate>
			<description>Hi, our company would like to setup Lotus Traveler for remote users access using either IPhone or Android phones but our Global partners recommended to have a reverse proxy on the front end facing the internet for security purposes. And this reverse proxy will be responsible for ldap authentication...</description>
			<content:encoded><![CDATA[<div>Hi, our company would like to setup Lotus Traveler for remote users access using either IPhone or Android phones but our Global partners recommended to have a reverse proxy on the front end facing the internet for security purposes. And this reverse proxy will be responsible for ldap authentication on the DC. <br />
<br />
Things I've done so far:<br />
<br />
1. Installed Windows Server 2008 R2 SP1 on the reverse proxy server and done installing IIS ARR<br />
<br />
2. Installed Windows Server 2008 R2 SP1 on the Lotus Traveler Server and done installing Lotus Domino for users to browse over the server and download the required software for their respective mobile type.<br />
<br />
Temporarily setup an administrator just for testing to be able to access the site and download the software for iphone and Android but eventually would like to use windows authentication to be able to access the site.<br />
<br />
Has anyone done this before? using IIS ARR<br />
<br />
Jeff</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-iis-12/">Microsoft IIS</category>
			<dc:creator>jeco</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-iis-12/iis-arr-538619.html</guid>
		</item>
		<item>
			<title>Database on Separate Server</title>
			<link>http://forums.aspfree.com/asp-development-5/database-separate-server-538618.html</link>
			<pubDate>Tue, 18 Jun 2013 21:06:16 GMT</pubDate>
			<description>Hi, I currently use an ODBC connection to connect to an access database on the same server as the ASP files.  I would like to move the database to a separate server (but still within the LAN).  Can anyone point me to a how-to on making this kind of database connection?  I feel like I should be...</description>
			<content:encoded><![CDATA[<div>Hi, I currently use an ODBC connection to connect to an access database on the same server as the ASP files.  I would like to move the database to a separate server (but still within the LAN).  Can anyone point me to a how-to on making this kind of database connection?  I feel like I should be finding something googling it, but I must not be using the right search terms.  Also, if anyone has any recommendations on whether this is good or bad in terms of performance, please chime in!<br />
<br />
Thanks in advance.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/asp-development-5/">ASP Development</category>
			<dc:creator>geog272</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/asp-development-5/database-separate-server-538618.html</guid>
		</item>
		<item>
			<title>asp news feed</title>
			<link>http://forums.aspfree.com/asp-development-5/asp-news-feed-538617.html</link>
			<pubDate>Tue, 18 Jun 2013 16:46:08 GMT</pubDate>
			<description><![CDATA[Hey everyone im lokiey, im brand new to coding and asp and i need some help figuring something out that's been killing me for over a week now. I created a news feed so admins on my site can post current news that's posted on the main page but lacks the one feature i feel it needs, Im trying to...]]></description>
			<content:encoded><![CDATA[<div>Hey everyone im lokiey, im brand new to coding and asp and i need some help figuring something out that's been killing me for over a week now. I created a news feed so admins on my site can post current news that's posted on the main page but lacks the one feature i feel it needs, Im trying to figure out how to add a move up/move down button to each news posted aside from the one posted at the top which only has a move down button giving you freedom to move them in the order of importance. I honestly cant figure out how to do this and the developer doesn't have time to do it so i must learn as i go for some things. So any help as to where to begin would be greatly appreciated because im at a complete loss on how to create these tables and functionality to this news feed and would like to learn how.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/asp-development-5/">ASP Development</category>
			<dc:creator>Lokiey</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/asp-development-5/asp-news-feed-538617.html</guid>
		</item>
		<item>
			<title>Disk 0 and Disk 3 Swap</title>
			<link>http://forums.aspfree.com/windows-os-15/disk-0-disk-3-swap-538616.html</link>
			<pubDate>Tue, 18 Jun 2013 14:56:09 GMT</pubDate>
			<description>I have a Dell PowerEdge R510. Connected to it, thru an H810 card is a Power Vault. The servers has 4 drives in a raid 6 array. Partitioned to Drives C: and D:. The OS (Server 2008 r2) is on the C partition. The power Vault is setup in 3 Raid 6 configuration. Drive S: Drive T: Drive U:.  Viewed in...</description>
			<content:encoded><![CDATA[<div>I have a Dell PowerEdge R510. Connected to it, thru an H810 card is a Power Vault. The servers has 4 drives in a raid 6 array. Partitioned to Drives C: and D:. The OS (Server 2008 r2) is on the C partition. The power Vault is setup in 3 Raid 6 configuration. Drive S: Drive T: Drive U:.  Viewed in computer management Drives C: and D: are Disk 3. Drive S is Disk 0, T is Disk 1, and U is Disk 2.  I know that this is normally not an issue, it will cause no errors under regular use. However we use a Unitrends Backup system.  While the backups function normally, I am unable to do a virtual restore of this server. I was told by tech support at Unitrends it is because the OS must be on Disk 0. The error I'm getting is that it can't locate drives S, T, U. (because the Disk numbers come before the OS, not after.) <br />
<br />
So the question is: How to make the current Disk 3, Disk 0?  The other Disks don't matter as long as they come after 0.<br />
<br />
I've searched thru the Bios, couldn't find any type of settings to modify this.  I've searched thru the management console, saw nothing. Internet searching always comebacks with &quot;It's not an issue because it will not cause any errors, so just leave it as it is.&quot; Unfortunately not the result in my case.  Anyone know how to do this?<br />
<br />
(unanswered cross post at: <a href="http://social.technet.microsoft.com/Forums/en-US/winserverManagement/thread/3e44a40a-7bb4-4f08-94b4-a04aa5d81982" target="_blank">Disk 0 Swap with Disk 3</a>)</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/windows-os-15/">Windows OS</category>
			<dc:creator>meratigoerr</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/windows-os-15/disk-0-disk-3-swap-538616.html</guid>
		</item>
		<item>
			<title>Using checkboxes to refine search results - query string?</title>
			<link>http://forums.aspfree.com/asp-development-5/using-checkboxes-refine-search-results-query-string-538614.html</link>
			<pubDate>Tue, 18 Jun 2013 11:42:18 GMT</pubDate>
			<description><![CDATA[Hi there, I have a search facility on a clients property website. It is using MS SQL and classic ASP for the coding.  
 
I have it set up so that clicking on 'Office' pulls in all of the office properties they have listed. They now want to be able to narrow this down to locations. 
 
I added a new...]]></description>
			<content:encoded><![CDATA[<div>Hi there, I have a search facility on a clients property website. It is using MS SQL and classic ASP for the coding. <br />
<br />
I have it set up so that clicking on 'Office' pulls in all of the office properties they have listed. They now want to be able to narrow this down to locations.<br />
<br />
I added a new field called 'proploc' and amended all of the current properties to give them a 'proplocid' (1 = Manchester, 2 = Liverpool, 3 = London etc., there are 8 in total)<br />
<br />
I added links on the Offices page so that they can go to each location, eg: <br />
<br />
offices.asp?proplocid=1 brings in all properties in Manchester only<br />
offices.asp?proplocid=2 brings in all properties in Liverpool only<br />
offices.asp?proplocid=3 brings in all properties in London only<br />
<br />
What they want though is to have checkboxes and a 'Go' button so that the user could select more than one location and then click Go to bring in both Liverpool and London properties (proplocid's 1 and 3)<br />
<br />
How do I go about this in terms of it generating the correct link? I know I am using old code in classis ASP but it does work for me generally.<br />
<br />
Here is the source code I am using before the opening html tag:<br />
<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&lt;%@LANGUAGE=&quot;VBSCRIPT&quot;%&gt; <br />
&lt;!--#include file=&quot;Connections/CONNECTIONNAME.asp&quot; --&gt;<br />
&lt;%<br />
Dim rs__varsection<br />
rs__varsection = &quot;1&quot;<br />
if (request(&quot;section&quot;)&nbsp;  &lt;&gt; &quot;&quot;) then rs__varsection = request(&quot;section&quot;)&nbsp; <br />
%&gt;<br />
&lt;%<br />
Dim rs__varstatus<br />
rs__varstatus = &quot;%&quot;<br />
if (request(&quot;status&quot;)&nbsp; &lt;&gt; &quot;&quot;) then rs__varstatus = request(&quot;status&quot;) <br />
%&gt;<br />
&lt;%<br />
Dim rs__varproploc<br />
rs__varproploc = &quot;%&quot;<br />
if (request(&quot;proploc&quot;)&nbsp; &lt;&gt; &quot;&quot;) then rs__varproploc = request(&quot;proploc&quot;) <br />
%&gt;<br />
&lt;%<br />
Dim rs__varpl<br />
rs__varpl = &quot;0&quot;<br />
if (Request.QueryString(&quot;minprice&quot;)&nbsp; &lt;&gt; &quot;&quot;) then rs__varpl = Request.QueryString(&quot;minprice&quot;) <br />
%&gt;<br />
&lt;%<br />
Dim rs__varpu<br />
rs__varpu = &quot;99999999999999&quot;<br />
if (Request.QueryString(&quot;maxprice&quot;)&nbsp; &lt;&gt; &quot;&quot;) then rs__varpu = Request.QueryString(&quot;maxprice&quot;) <br />
%&gt;<br />
&lt;%<br />
set rs = Server.CreateObject(&quot;ADODB.Recordset&quot;)<br />
rs.ActiveConnection = Conn<br />
rs.Source = _<br />
&nbsp; &nbsp; &quot;SELECT *&nbsp; FROM prop, section, status, proploc&quot; _<br />
&nbsp; &amp; &quot; WHERE status = statusid AND section = sectionid AND proploc = proplocid&quot; _<br />
&nbsp; &amp; &quot; AND section in (1,5,6,7) &quot; _<br />
&nbsp; &amp; &quot; AND status like '&quot; &amp; Replace(rs__varstatus, &quot;'&quot;, &quot;''&quot;) &amp; &quot;' &quot; _<br />
&nbsp; &amp; &quot; AND proploc like '&quot; &amp; Replace(rs__varproploc, &quot;'&quot;, &quot;''&quot;) &amp; &quot;' &quot; _<br />
&nbsp; &amp; &quot; AND price between &quot; &amp; CDBL(rs__varpl) &amp; &quot; AND &quot; &amp; CDBL(rs__varpu) _<br />
&nbsp; &amp; &quot; ORDER BY price DESC&quot;<br />
<br />
rs.CursorType = 0<br />
rs.CursorLocation = 2<br />
rs.LockType = 3<br />
rs.Open()<br />
rs_numRows = 0<br />
%&gt;<br />
&lt;%<br />
Dim rs2__MMColParam<br />
rs2__MMColParam = &quot;1&quot;<br />
if (Request.QueryString(&quot;statusid&quot;) &lt;&gt; &quot;&quot;) then rs2__MMColParam = Request.QueryString(&quot;statusid&quot;)<br />
%&gt;<br />
&lt;%<br />
set rs2 = Server.CreateObject(&quot;ADODB.Recordset&quot;)<br />
rs2.ActiveConnection = Conn<br />
rs2.Source = &quot;SELECT * FROM status WHERE statusid = &quot; + Replace(rs2__MMColParam, &quot;'&quot;, &quot;''&quot;) + &quot;&quot;<br />
rs2.CursorType = 0<br />
rs2.CursorLocation = 2<br />
rs2.LockType = 3<br />
rs2.Open()<br />
rs2_numRows = 0<br />
%&gt;<br />
<br />
<br />
&lt;%<br />
Dim rs4__MMColParam<br />
rs4__MMColParam = &quot;1&quot;<br />
if (Request.QueryString(&quot;proplocid&quot;) &lt;&gt; &quot;&quot;) then rs4__MMColParam = Request.QueryString(&quot;proplocid&quot;)<br />
%&gt;<br />
&lt;%<br />
set rs4 = Server.CreateObject(&quot;ADODB.Recordset&quot;)<br />
rs4.ActiveConnection = Conn<br />
rs4.Source = &quot;SELECT * FROM proploc WHERE proplocid = &quot; + Replace(rs4__MMColParam, &quot;'&quot;, &quot;''&quot;) + &quot;&quot;<br />
rs4.CursorType = 0<br />
rs4.CursorLocation = 2<br />
rs4.LockType = 3<br />
rs4.Open()<br />
rs4_numRows = 0<br />
%&gt;<br />
<br />
<br />
<br />
&lt;%<br />
Dim Repeat1__numRows<br />
Repeat1__numRows = 10<br />
Dim Repeat1__index<br />
Repeat1__index = 0<br />
rs_numRows = rs_numRows + Repeat1__numRows<br />
%&gt;<br />
&lt;%<br />
'&nbsp; *** Recordset Stats, Move To Record, and Go To Record: declare stats variables<br />
<br />
' set the record count<br />
rs_total = rs.RecordCount<br />
<br />
' set the number of rows displayed on this page<br />
If (rs_numRows &lt; 0) Then<br />
&nbsp; rs_numRows = rs_total<br />
Elseif (rs_numRows = 0) Then<br />
&nbsp; rs_numRows = 1<br />
End If<br />
<br />
' set the first and last displayed record<br />
rs_first = 1<br />
rs_last&nbsp; = rs_first + rs_numRows - 1<br />
<br />
' if we have the correct record count, check the other stats<br />
If (rs_total &lt;&gt; -1) Then<br />
&nbsp; If (rs_first &gt; rs_total) Then rs_first = rs_total<br />
&nbsp; If (rs_last &gt; rs_total) Then rs_last = rs_total<br />
&nbsp; If (rs_numRows &gt; rs_total) Then rs_numRows = rs_total<br />
End If<br />
%&gt;<br />
&lt;%<br />
' *** Recordset Stats: if we don't know the record count, manually count them<br />
<br />
If (rs_total = -1) Then<br />
<br />
&nbsp; ' count the total records by iterating through the recordset<br />
&nbsp; rs_total=0<br />
&nbsp; While (Not rs.EOF)<br />
&nbsp; &nbsp; rs_total = rs_total + 1<br />
&nbsp; &nbsp; rs.MoveNext<br />
&nbsp; Wend<br />
<br />
&nbsp; ' reset the cursor to the beginning<br />
&nbsp; If (rs.CursorType &gt; 0) Then<br />
&nbsp; &nbsp; rs.MoveFirst<br />
&nbsp; Else<br />
&nbsp; &nbsp; rs.Requery<br />
&nbsp; End If<br />
<br />
&nbsp; ' set the number of rows displayed on this page<br />
&nbsp; If (rs_numRows &lt; 0 Or rs_numRows &gt; rs_total) Then<br />
&nbsp; &nbsp; rs_numRows = rs_total<br />
&nbsp; End If<br />
<br />
&nbsp; ' set the first and last displayed record<br />
&nbsp; rs_first = 1<br />
&nbsp; rs_last = rs_first + rs_numRows - 1<br />
&nbsp; If (rs_first &gt; rs_total) Then rs_first = rs_total<br />
&nbsp; If (rs_last &gt; rs_total) Then rs_last = rs_total<br />
<br />
End If<br />
%&gt;<br />
&lt;%<br />
' *** Move To Record and Go To Record: declare variables<br />
<br />
Set MM_rs&nbsp; &nbsp; = rs<br />
MM_rsCount&nbsp;  = rs_total<br />
MM_size&nbsp; &nbsp; &nbsp; = rs_numRows<br />
MM_uniqueCol = &quot;&quot;<br />
MM_paramName = &quot;&quot;<br />
MM_offset = 0<br />
MM_atTotal = false<br />
MM_paramIsDefined = false<br />
If (MM_paramName &lt;&gt; &quot;&quot;) Then<br />
&nbsp; MM_paramIsDefined = (Request.QueryString(MM_paramName) &lt;&gt; &quot;&quot;)<br />
End If<br />
%&gt;<br />
&lt;%<br />
' *** Move To Record: handle 'index' or 'offset' parameter<br />
<br />
if (Not MM_paramIsDefined And MM_rsCount &lt;&gt; 0) then<br />
<br />
&nbsp; ' use index parameter if defined, otherwise use offset parameter<br />
&nbsp; r = Request.QueryString(&quot;index&quot;)<br />
&nbsp; If r = &quot;&quot; Then r = Request.QueryString(&quot;offset&quot;)<br />
&nbsp; If r &lt;&gt; &quot;&quot; Then MM_offset = Int(r)<br />
<br />
&nbsp; ' if we have a record count, check if we are past the end of the recordset<br />
&nbsp; If (MM_rsCount &lt;&gt; -1) Then<br />
&nbsp; &nbsp; If (MM_offset &gt;= MM_rsCount Or MM_offset = -1) Then&nbsp; ' past end or move last<br />
&nbsp; &nbsp; &nbsp; If ((MM_rsCount Mod MM_size) &gt; 0) Then&nbsp; &nbsp; &nbsp; &nbsp;  ' last page not a full repeat region<br />
&nbsp; &nbsp; &nbsp; &nbsp; MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)<br />
&nbsp; &nbsp; &nbsp; Else<br />
&nbsp; &nbsp; &nbsp; &nbsp; MM_offset = MM_rsCount - MM_size<br />
&nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; End If<br />
&nbsp; End If<br />
<br />
&nbsp; ' move the cursor to the selected record<br />
&nbsp; i = 0<br />
&nbsp; While ((Not MM_rs.EOF) And (i &lt; MM_offset Or MM_offset = -1))<br />
&nbsp; &nbsp; MM_rs.MoveNext<br />
&nbsp; &nbsp; i = i + 1<br />
&nbsp; Wend<br />
&nbsp; If (MM_rs.EOF) Then MM_offset = i&nbsp; ' set MM_offset to the last possible record<br />
<br />
End If<br />
%&gt;<br />
&lt;%<br />
' *** Move To Record: if we dont know the record count, check the display range<br />
<br />
If (MM_rsCount = -1) Then<br />
<br />
&nbsp; ' walk to the end of the display range for this page<br />
&nbsp; i = MM_offset<br />
&nbsp; While (Not MM_rs.EOF And (MM_size &lt; 0 Or i &lt; MM_offset + MM_size))<br />
&nbsp; &nbsp; MM_rs.MoveNext<br />
&nbsp; &nbsp; i = i + 1<br />
&nbsp; Wend<br />
<br />
&nbsp; ' if we walked off the end of the recordset, set MM_rsCount and MM_size<br />
&nbsp; If (MM_rs.EOF) Then<br />
&nbsp; &nbsp; MM_rsCount = i<br />
&nbsp; &nbsp; If (MM_size &lt; 0 Or MM_size &gt; MM_rsCount) Then MM_size = MM_rsCount<br />
&nbsp; End If<br />
<br />
&nbsp; ' if we walked off the end, set the offset based on page size<br />
&nbsp; If (MM_rs.EOF And Not MM_paramIsDefined) Then<br />
&nbsp; &nbsp; If (MM_offset &gt; MM_rsCount - MM_size Or MM_offset = -1) Then<br />
&nbsp; &nbsp; &nbsp; If ((MM_rsCount Mod MM_size) &gt; 0) Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; MM_offset = MM_rsCount - (MM_rsCount Mod MM_size)<br />
&nbsp; &nbsp; &nbsp; Else<br />
&nbsp; &nbsp; &nbsp; &nbsp; MM_offset = MM_rsCount - MM_size<br />
&nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; End If<br />
&nbsp; End If<br />
<br />
&nbsp; ' reset the cursor to the beginning<br />
&nbsp; If (MM_rs.CursorType &gt; 0) Then<br />
&nbsp; &nbsp; MM_rs.MoveFirst<br />
&nbsp; Else<br />
&nbsp; &nbsp; MM_rs.Requery<br />
&nbsp; End If<br />
<br />
&nbsp; ' move the cursor to the selected record<br />
&nbsp; i = 0<br />
&nbsp; While (Not MM_rs.EOF And i &lt; MM_offset)<br />
&nbsp; &nbsp; MM_rs.MoveNext<br />
&nbsp; &nbsp; i = i + 1<br />
&nbsp; Wend<br />
End If<br />
%&gt;<br />
&lt;%<br />
' *** Move To Record: update recordset stats<br />
<br />
' set the first and last displayed record<br />
rs_first = MM_offset + 1<br />
rs_last&nbsp; = MM_offset + MM_size<br />
If (MM_rsCount &lt;&gt; -1) Then<br />
&nbsp; If (rs_first &gt; MM_rsCount) Then rs_first = MM_rsCount<br />
&nbsp; If (rs_last &gt; MM_rsCount) Then rs_last = MM_rsCount<br />
End If<br />
<br />
' set the boolean used by hide region to check if we are on the last record<br />
MM_atTotal = (MM_rsCount &lt;&gt; -1 And MM_offset + MM_size &gt;= MM_rsCount)<br />
%&gt;<br />
&lt;%<br />
' *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters<br />
<br />
' create the list of parameters which should not be maintained<br />
MM_removeList = &quot;&amp;index=&quot;<br />
If (MM_paramName &lt;&gt; &quot;&quot;) Then MM_removeList = MM_removeList &amp; &quot;&amp;&quot; &amp; MM_paramName &amp; &quot;=&quot;<br />
MM_keepURL=&quot;&quot;:MM_keepForm=&quot;&quot;:MM_keepBoth=&quot;&quot;:MM_keepNone=&quot;&quot;<br />
<br />
' add the URL parameters to the MM_keepURL string<br />
For Each Item In Request.QueryString<br />
&nbsp; NextItem = &quot;&amp;&quot; &amp; Item &amp; &quot;=&quot;<br />
&nbsp; If (InStr(1,MM_removeList,NextItem,1) = 0) Then<br />
&nbsp; &nbsp; MM_keepURL = MM_keepURL &amp; NextItem &amp; Server.URLencode(Request.QueryString(Item))<br />
&nbsp; End If<br />
Next<br />
<br />
' add the Form variables to the MM_keepForm string<br />
For Each Item In Request.Form<br />
&nbsp; NextItem = &quot;&amp;&quot; &amp; Item &amp; &quot;=&quot;<br />
&nbsp; If (InStr(1,MM_removeList,NextItem,1) = 0) Then<br />
&nbsp; &nbsp; MM_keepForm = MM_keepForm &amp; NextItem &amp; Server.URLencode(Request.Form(Item))<br />
&nbsp; End If<br />
Next<br />
<br />
' create the Form + URL string and remove the intial '&amp;' from each of the strings<br />
MM_keepBoth = MM_keepURL &amp; MM_keepForm<br />
if (MM_keepBoth &lt;&gt; &quot;&quot;) Then MM_keepBoth = Right(MM_keepBoth, Len(MM_keepBoth) - 1)<br />
if (MM_keepURL &lt;&gt; &quot;&quot;)&nbsp; Then MM_keepURL&nbsp; = Right(MM_keepURL, Len(MM_keepURL) - 1)<br />
if (MM_keepForm &lt;&gt; &quot;&quot;) Then MM_keepForm = Right(MM_keepForm, Len(MM_keepForm) - 1)<br />
<br />
' a utility function used for adding additional parameters to these strings<br />
Function MM_joinChar(firstItem)<br />
&nbsp; If (firstItem &lt;&gt; &quot;&quot;) Then<br />
&nbsp; &nbsp; MM_joinChar = &quot;&amp;&quot;<br />
&nbsp; Else<br />
&nbsp; &nbsp; MM_joinChar = &quot;&quot;<br />
&nbsp; End If<br />
End Function<br />
%&gt;<br />
&lt;%<br />
' *** Move To Record: set the strings for the first, last, next, and previous links<br />
<br />
MM_keepMove = MM_keepBoth<br />
MM_moveParam = &quot;index&quot;<br />
<br />
' if the page has a repeated region, remove 'offset' from the maintained parameters<br />
If (MM_size &gt; 0) Then<br />
&nbsp; MM_moveParam = &quot;offset&quot;<br />
&nbsp; If (MM_keepMove &lt;&gt; &quot;&quot;) Then<br />
&nbsp; &nbsp; params = Split(MM_keepMove, &quot;&amp;&quot;)<br />
&nbsp; &nbsp; MM_keepMove = &quot;&quot;<br />
&nbsp; &nbsp; For i = 0 To UBound(params)<br />
&nbsp; &nbsp; &nbsp; nextItem = Left(params(i), InStr(params(i),&quot;=&quot;) - 1)<br />
&nbsp; &nbsp; &nbsp; If (StrComp(nextItem,MM_moveParam,1) &lt;&gt; 0) Then<br />
&nbsp; &nbsp; &nbsp; &nbsp; MM_keepMove = MM_keepMove &amp; &quot;&amp;&quot; &amp; params(i)<br />
&nbsp; &nbsp; &nbsp; End If<br />
&nbsp; &nbsp; Next<br />
&nbsp; &nbsp; If (MM_keepMove &lt;&gt; &quot;&quot;) Then<br />
&nbsp; &nbsp; &nbsp; MM_keepMove = Right(MM_keepMove, Len(MM_keepMove) - 1)<br />
&nbsp; &nbsp; End If<br />
&nbsp; End If<br />
End If<br />
<br />
' set the strings for the move to links<br />
If (MM_keepMove &lt;&gt; &quot;&quot;) Then MM_keepMove = MM_keepMove &amp; &quot;&amp;&quot;<br />
urlStr = Request.ServerVariables(&quot;URL&quot;) &amp; &quot;?&quot; &amp; MM_keepMove &amp; MM_moveParam &amp; &quot;=&quot;<br />
MM_moveFirst = urlStr &amp; &quot;0&quot;<br />
MM_moveLast&nbsp; = urlStr &amp; &quot;-1&quot;<br />
MM_moveNext&nbsp; = urlStr &amp; Cstr(MM_offset + MM_size)<br />
prev = MM_offset - MM_size<br />
If (prev &lt; 0) Then prev = 0<br />
MM_movePrev&nbsp; = urlStr &amp; Cstr(prev)<br />
%&gt;</code><hr />
</div>Any help would be most welcome on this.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/asp-development-5/">ASP Development</category>
			<dc:creator>wozwebs</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/asp-development-5/using-checkboxes-refine-search-results-query-string-538614.html</guid>
		</item>
		<item>
			<title>automating sql commands</title>
			<link>http://forums.aspfree.com/microsoft-sql-server-14/automating-sql-commands-538613.html</link>
			<pubDate>Mon, 17 Jun 2013 23:35:47 GMT</pubDate>
			<description><![CDATA[hi, 
 
I would like to run scripts automatically in SQL Server 2008.  I have script that creates databases, builds tables and updates them. I've run these manually, but it takes a long time to do this and I have roughly 12 databases to update.  What is the best way I can automate these scripts so...]]></description>
			<content:encoded><![CDATA[<div>hi,<br />
<br />
I would like to run scripts automatically in SQL Server 2008.  I have script that creates databases, builds tables and updates them. I've run these manually, but it takes a long time to do this and I have roughly 12 databases to update.  What is the best way I can automate these scripts so they can run by themselves?  I read something about using a 'scripter' class, but is that the best option I have? <br />
<br />
Thanks!<br />
<br />
Mag</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-sql-server-14/">Microsoft SQL Server</category>
			<dc:creator>trevi</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-sql-server-14/automating-sql-commands-538613.html</guid>
		</item>
		<item>
			<title><![CDATA[Is there a VBScribe MD5 convertor that takes both a "sMessage"  & a secrete key?]]></title>
			<link>http://forums.aspfree.com/asp-development-5/there-vbscribe-md5-convertor-takes-both-smessage-secrete-key-538612.html</link>
			<pubDate>Mon, 17 Jun 2013 20:33:53 GMT</pubDate>
			<description><![CDATA[Is there a VBScribe MD5 convertor that takes both a "sMessage"  & a secrete key?]]></description>
			<content:encoded><![CDATA[<div>Is there a VBScribe MD5 convertor that takes both a &quot;sMessage&quot;  &amp; a secrete key?</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/asp-development-5/">ASP Development</category>
			<dc:creator>dhuangfu</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/asp-development-5/there-vbscribe-md5-convertor-takes-both-smessage-secrete-key-538612.html</guid>
		</item>
		<item>
			<title>List Box Horizontal Bars</title>
			<link>http://forums.aspfree.com/microsoft-access-help-18/list-box-horizontal-bars-538611.html</link>
			<pubDate>Mon, 17 Jun 2013 12:34:07 GMT</pubDate>
			<description><![CDATA[I was hoping someone could assist me. I am having an issue getting a horizontal bar to appear in a list box on Access Form. I have tried several things and haven't been able to accomplish it. Right now I have my column count at 1 and my column width at 1. Does anyone have any suggestions?]]></description>
			<content:encoded><![CDATA[<div>I was hoping someone could assist me. I am having an issue getting a horizontal bar to appear in a list box on Access Form. I have tried several things and haven't been able to accomplish it. Right now I have my column count at 1 and my column width at 1. Does anyone have any suggestions?</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/microsoft-access-help-18/">Microsoft Access Help</category>
			<dc:creator>ACNI</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/microsoft-access-help-18/list-box-horizontal-bars-538611.html</guid>
		</item>
		<item>
			<title><![CDATA[How to implement bidding concept in website? in Html & Asp]]></title>
			<link>http://forums.aspfree.com/programming-help-33/how-implement-bidding-concept-website-html-asp-538609.html</link>
			<pubDate>Mon, 17 Jun 2013 10:49:26 GMT</pubDate>
			<description>Use an asynchronous technology such as AJAX, which connects back to the database every few seconds to update the auction details such, as the price and quantity left. Then when the quantity hits zero, you grab another product from the DB and start the process all over again. This method works well...</description>
			<content:encoded><![CDATA[<div>Use an asynchronous technology such as AJAX, which connects back to the database every few seconds to update the auction details such, as the price and quantity left. Then when the quantity hits zero, you grab another product from the DB and start the process all over again. This method works well particularly well when combined with XML/JSON.<br />
 <br />
Ajax Tutorial for Beginners: Part 1[^]<br />
 <br />
Ajax Tutorial for Beginners with XML &amp; JSON: Part 2[^]<br />
 <br />
I used to write falling-price auction sites like the ones you posted, and this is how they work. Normally you will want to set your javascript timer to refresh your auction details by calling the same AJAX function around every 3 seconds or so:<br />
 <br />
Collapse | Copy Code<br />
<br />
setTimeout(function(){myAJAXFunc()},3000);<br />
<br />
 <br />
And if you're using Firefox, a nice way to track the XML being passed back is to use the XML/HTTP Request viewer in the Firebug plug-in, to see your AJAX data as it refreshes from the DB every few seconds.</div>

]]></content:encoded>
			<category domain="http://forums.aspfree.com/programming-help-33/">Programming Help</category>
			<dc:creator>Jack Hard</dc:creator>
			<guid isPermaLink="true">http://forums.aspfree.com/programming-help-33/how-implement-bidding-concept-website-html-asp-538609.html</guid>
		</item>
	</channel>
</rss>
