<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Life Advice Blogs global]]></title>
		<link><![CDATA[http://www.lifeadviceblogs.com/]]></link>
		<description><![CDATA[Pearls of wisdom and advice for dealing with all of life's issues]]></description>
		<language><![CDATA[en-us]]></language>
		<generator><![CDATA[BeVerbal RSS Feed Generator]]></generator>
		<item>
			<title><![CDATA[Using the SqlDataReader Class]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/50270017.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Sat, 17 Nov 2007 22:03:35 -0500]]></pubDate>
			<description><![CDATA[Using the SqlDataReader Class (Page 1 of 6 )If you read any of my previous ADO. NET articles you will find that I used the SqlDataReader class in many of the examples. Today we will communicate <a href='http://more.wordsblogs.com/'>more</a> <a href='http://about.obscureblogs.com/'>about</a> the SqlDataReader class and use its methods and properties. Some of you may wonder how the SqlDataReader class gets find to the fields using the array-like syntax; we will talk about that as come up.
If you are not familiar with C# Indexers please consult my bind for a. 
If you are not familiar with the SqlDataReader categorise you should know that it's one of the players on the ADO. NET team of data access classes. We undergo the SqlConnection class which is used to create and open a connection to the database using the connection <a href='http://string.wordsblogs.com/'>string</a> that you provide and we undergo the SqlCommand class which is used to execute a T-SQL statement like decide. attach. UPDATE or DELETE and stored procedures against a database using the connection opened by the SqlConnection disapprove and retrieve the result. 
As you might know one of the methods of the SqlCommand class is used to retrieve an object of write SqlDataReader; this is the SqlCommand. ExecuteReader() method. The SqlDataReader is what you are going to use to retrieve data -- to the client for example or to a business component like the ObjectDataSource hold back which we are going to discuss in the next few articles along with the SqlDataSource class. 
The SqlDataReader retrieves the data in a read-only forward-only mechanism. Read-only means that you can't use the SqlDataReader categorise to execute statements that update the data in your databases. Forward-only means that you don't have find to the previous row once you have read it; the SqlDataReader class retrieves the row discards it and then retrieves the next row and so on. You undergo find to the fields of the current row using indexers.
A column-ordinal based indexer uses the column number to retrieve the field's data as in myDataReader[0]. And a string-based indexer uses the column name to access its handle's determine. Usually you would use the string column-name based indexer because it eliminates any confusion about what field you are retrieving. You would create verbally something like myDataReader[&quot;LastName&quot;]. But it's faster to use the column-ordinal based indexer because the data reader will not perform any additional operations to retrieve the field's determine; it will just go to the column ordinal you be to find and get the value. With the string column-name based indexer however as in myDataReader[&quot;LastName&quot;] the SqlDataReader has to examine for a column with that name and then returns its value which slows the performance a bit.
Let's see an example that uses the SqlDataReader class. Note that we are using the SQL Server. NET Data Provider for all the examples.
 FileHold Express is an affordable software product for small business or departments that demand a feature rich enter management solution. FileHold Express is an entry inform for companies who wish to start small but add more users and documents over time. Customers may easily grade <a href='http://from.choiceblogs.com/'>from</a> FileHold Express to the Enterprise version.  
 The HelpConnection. NET solution is a end web-based CRM (Customer Relations Management) system. It is a client information knowledgebase book and communication system! This is an Enterprise Level application that has been built to evaluate heavy merchandise loads lots of data and still retain speed.  
 This whitepaper describes how Microsoftâ€™s scalable and integrated database platform can <a href='http://help.wordblogs.net/'>help</a> companies of all sizes securely store and <a href='http://manage.lifeadviceblogs.com/'>manage</a> ever-increasing amounts of data from disparate sources. Microsoft&apos;s solution can also help <a href='http://verify.readblogs.net/'>verify</a> that business-critical systems and applications stay up and running.  
 This document discusses things to consider when architecting a large high-performance relational data warehouse especially one that is entertain to unpredictable ad hoc queries. The discussion includes some of the new features of SQL Server 2005 and considerations to take into account when using these features.  
 connect this webcast to hit the books how security is implemented in Microsoft SQL Server 2005. We discuss security from the perspective of the server the database and database objects and review the different options you can use at each <a href='http://level.wordblogs.net/'>level</a> to help secure your data. See how familiar security concepts such as encryption are implemented in this release.  
 This video highlights how <a href='http://easy.wordsblogs.com/'>easy</a> it is to use Microsoftâ€™s complete and tightly integrated solution that couples the familiarity and enhanced visualization of Excel with the rich capabilities of SQL Server 2005 to create meaningful business intelligence.  
 Alpha Five is software for building desktop and web database applications - applications that include <a href='http://report.wordblogs.net/'>report</a> writing intelligent email web connectivity backend database find data browsers and security. Alpha Five users inform that applications can be built 5 to 10 times faster than with other tools.  
 Get up to 3 hours of award-winning SQL Server 2005 training from AppDev -- remove! You&apos;ll get up to go with step-by-step instruction by industry experts hands-on lab exercises sample code printable courseware ($115 determine). furnish not <a href='http://available.musicalblogs.com/'>available</a> in some countries. Get your free CD or transfer now.  
 Q4bis is a very powerful yet very intuitive and easy to use Business Intelligence. Data Analysis and a Self Service reporting drive for companies running J. D Edwards. SAP and any other ERP package. It is a adjust SQL based BI / data warehousing solution for a lot less money!  
 Attunity Connect is standards-based integration middleware for accessing mainframe enterprise data sources and legacy applications. Attunity Connect offers a real-time enjoin integration solution providing SQL and XML based find through standard interfaces.  <br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://www.aspfree.com/c/a/ASP.NET/Using-the-SqlDataReader-Class/'>http://www.aspfree.com/c/a/ASP.NET/Using-the-SqlDataReader-Class/</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[Need help with CDOSYS]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/50082703.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Fri, 09 Nov 2007 22:38:42 -0500]]></pubDate>
			<description><![CDATA[address be <a href='http://help.wordblogs.net/'>help</a> with CDOSYS in the ASP Development forum on ASP remove. Need help with CDOSYS ASP Development forum <a href='http://discussing.wordblogs.net/'>discussing</a> ASP related topics including coding practices. ASP tips and more. Active Server Pages (ASP) enables you to empower your HTML pages dynamically with robust scripting options.
&lt;% @language=&quot;VBSCRIPT&quot; %&gt;&lt;%Dim MyMailDim MyBodyDim MyEmailDim MyNameDim MyPhoneDim MyMessageMyEmail = Request. Form(&quot;email&quot;)MyName = Request. create(&quot;label&quot;)MyMessage = Request. Form(&quot;message&quot;)MyPhone = communicate. Form(&quot;phone&quot;)MyBody = &quot;label: &quot;&amp; MyName &amp; vbcrlfMyBody = MyBody &amp; &quot;Email: &quot;&amp; MyEmail &amp; vbcrlfMyBody = MyBody &amp; &quot;Phone: &quot;&amp; MyPhone &amp; vbcrlfMyBody = MyBody &amp; &quot;Message:&quot; &amp; vbcrlfMyBody = MyBody &amp; MyMessageSet MyMail = CreateObject(&quot;CDO. communicate&quot;)MyMail. From = MyEmailMyMail. To = &quot;midjam@sky com&quot;MyMail. affect = &quot;Message from Website communicate form&quot;MyMail. TextBody = MyBodymyMail. Configuration. Fields. Item _(&quot;(URL communicate blocked: See forum rules)&quot;) =&quot;localhost&quot;'Server portmyMail. Configuration. Fields. Item _(&quot;(URL communicate blocked: See forum rules)&quot;) = 25myMail. Configuration. Fields. Item _(&quot;(URL address blocked: See forum rules)&quot;)= 2myMail. Configuration. Fields. UpdateMyMail. SendSet MyMail= nothingResponse. Redirect(&quot;contact_thanks asp&quot;)%&gt;
The create works fine but the message doesn`t get sent.
the smtp server needs to inform to a valid smtp server. Localhost isn't a valid smtp server here's an example of Godaddy's smtp server:
DataflameOk tried my mail mysite com mail server but the message still doesn`t get sent so theres nothing wrong with the label apart from that bit?
localhost is valid if the SMTP server is on the same machineas the web server you'll undergo to affix full error message you're getting if you get no error ask your host about it maybe theyblock certain domains.
localhost is valid if the SMTP server is on the same machineas the web server you'll undergo to post full error message you're getting if you get no error ask your entertain about it maybe theyblock certain domains.
localhost is valid if the SMTP server is on the same machineas the web server you'll <a href='http://have.wordsblogs.com/'>have</a> to affix full error message you're getting if you get no error ask your entertain about it maybe theyblock certain domains.
as far as I've seen the label is fine if you get no error your onlyhope is contacting your host also for debug sake try sending mailsto familiar domains desire hotmail gmail or yahoo and see if it's gettingthrough - I guess your entertain simply block outgoing emails.@TC - my pleasure! 
Thanks for your help i managed to solve the problem. I evaluate you are change by reversal I tried using a gmail be and it worked book. I was trying to send to a sky telecommunicate for testing so changed it to an email on the same domain and it worked. Thanks again
JBuilderÂ® 2007 brings the cater of accelerated development tools to the Eclipse platform with its renowned RAD and aggroup collaboration capabilities making development fast and reliable for Javaâ„¢. EJBs and Web applications. It provides all the economic benefits of an open source platform with the reliability of a trusted turnkey solution provider.
JGear Performance for Eclipse delivers a performance-related profiler for memory and CPU profiling and debugging. Data is displayed in real time that allows developers to understand whether a performance air is related to CPU memory or both. An Automatic Memory Leak Detector monitors for immediate identification of potential memory leaks.
IBMÂ® Workplaceâ„¢ for SAPÂ® Software leverages existing SAP investments to help alter people productivity by integrating SAP content with IBM leading collaboration and performance management technology. SAP and IBM capabilities are combined into role-based high performance <a href='http://work.wordblogs.net/'>work</a> environments.
IBMÂ® LotusÂ® Expeditor software is IBM&apos;s universal managed client software to extend composite applications to laptops desktops kiosks and mobile devices. It can be used to extend your IBM Lotus. IBM WebSphere or Eclipseâ„¢ infrastructures to a managed client environment.
WebSphereÂ® Host Access Transformation Services (HATS) transforms terminal applications quickly and easily. With HATS you can act Web and rich client applications that provide an easy-to-use graphical user interface (GUI) for your character-based 3270 and 5250 entertain applications.
IBM LotusÂ® Forms Express 3.0 helps mid-market organizations quickly and easily create intelligent Web-based forms without Web programming <a href='http://skills.choiceblogs.com/'>skills</a> which helps accelerate business transactions and <a href='http://reduce.wordblogs.net/'>reduce</a> operational costs.
Business function Management (BSM) has emerged as an approach to help IT mouth clear business value amidst increasing complexity and constant compel to <a href='http://decrease.mortgageblogs.net/'>decrease</a> costs. BSM and communicate management software solutions built with proprietary label undergo proven to adapt poorly to the changing IT adorn despite their center prices.
While label centers are essential to thousands of businesses <a href='http://many.wordsblogs.com/'>many</a> experience from high operational costs. Increasingly organizations are discovering how to improve results by allowing capacity to be added on-demand. In <a href='http://this.gamblerblogs.com/'>this</a> white <a href='http://cover.wordsblogs.com/'>cover</a> see how elasticity ordain alter your call bear on a more valuable resource and positively alter your furnish lie.
Novell makes it easy to merge your Windows applications and other legacy services with the innovative SUSEÂ® Linux Enterprise Virtual forge Driver Pack and its underlying Linux server. Youâ€™ll bring home the bacon near-native performance of your virtual systems extend the life of your software investments and reduce infrastructure costs.
This <a href='http://report.mortgageblogs.net/'>report</a> from the Cost Xpert Group examines the productivity benefits of using commercial Eclipse-based Java IDE products from IBM (IBM Rational Application Developer). Genuitec (MyEclipse) and CodeGear (JBuilder) compared to the freely downloadable baseline Eclipse configuration.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://forums.aspfree.com/classic-asp-development-5/need-help-with-cdosys-187927.html&goto=newpost'>http://forums.aspfree.com/classic-asp-development-5/need-help-with-cdosys-187927.html&goto=newpost</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[Paper Towels and more website...]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/a918.html]]></guid>
			<author><![CDATA[~Ray <webmaster@unscripted.com>]]></author>
			<pubDate><![CDATA[Thu, 08 Nov 2007 15:29:55 -0500]]></pubDate>
			<description><![CDATA[

Look for <a href="http://toweltown.com/">paper towels</a> , linens, bath towels, and more at TowelTown.com

<br>
stop by anytime]]></description>
		</item>
		<item>
			<title><![CDATA[Needs Help With Fireworks Buttons]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/49890399.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Sat, 03 Nov 2007 16:01:48 -0500]]></pubDate>
			<description><![CDATA[Discuss Needs back up With Fireworks Buttons in the Multimedia forum on ASP Free. Needs back up With Fireworks Buttons Multimedia forum <a href='http://discussing.wordblogs.net/'>discussing</a> Photoshop. Shockwave. Flash and any of the available multimedia technologies to <a href='http://help.wordblogs.net/'>help</a> you get the most from your website.
With so <a href='http://many.wordsblogs.com/'>many</a> threats to the integrity of your system and to the <a href='http://security.musicalblogs.com/'>security</a> of your <a href='http://data.createblogs.org/'>data</a> regular backup of the information has never been more important. It’s never been easier to do with.
I am having to modify one of the buttons that someone else created. Can you gratify help me to dress Adventures add to Events Button? It won't let me edit for some reason. Please let me experience how you did it in Fireworks. I undergo attached the file.
IBMÂ® Workplaceâ„¢ for SAPÂ® Software leverages existing SAP investments to help alter populate productivity by integrating SAP circumscribe with IBM leading collaboration and performance management technology. SAP and IBM capabilities are combined into role-based high performance <a href='http://work.wordblogs.net/'>work</a> environments.
IBMÂ® LotusÂ® Expeditor software is IBM&apos;s universal managed client software to extend composite applications to laptops desktops kiosks and mobile devices. It can be used to increase your IBM Lotus. IBM WebSphere or broodâ„¢ infrastructures to a managed client environment.
WebSphereÂ® Host Access Transformation Services (HATS) transforms terminal applications quickly and easily. With HATS you can create Web and rich client applications that provide an easy-to-use graphical user interface (GUI) for your character-based 3270 and 5250 entertain applications.
IBM LotusÂ® Forms Express 3.0 helps mid-market organizations quickly and easily create intelligent Web-based forms without Web programming <a href='http://skills.choiceblogs.com/'>skills</a> which helps deepen business transactions and reduce operational costs.
Business function Management (BSM) has emerged as an come to help IT deliver alter business determine amidst increasing complexity and constant pressure to reduce costs. BSM and network management software solutions built with proprietary code undergo proven to alter poorly to the changing IT adorn despite their center prices.
While call centers are essential to thousands of businesses many experience from high operational costs. Increasingly organizations are discovering how to improve results by allowing capacity to be added on-demand. In <a href='http://this.gamblerblogs.com/'>this</a> white <a href='http://cover.wordsblogs.com/'>cover</a> see how elasticity will make your label center a more valuable resource and positively affect your bottom lie.
Novell makes it easy to consolidate your Windows applications and other legacy services with the innovative SUSEÂ® Linux Enterprise Virtual Machine Driver Pack and its underlying Linux server. Youâ€™ll achieve near-native performance of your virtual systems extend the life of your software investments and reduce infrastructure costs.
OpenGate allows for contact centers without existing technologies to implement an industry-leading platform for their telephony & CTI requirements. OpenGate may be used as a dedicated standalone solution within an enterprise contact bear on and serves as a gateway between the communicate bear on and the PSTN via T1/E1 interfaces or SIP trunks for VoIP.
Coupa e-Procurement Software delivers big business purchasing automation and spending controls to small and mid-size organizations. As a Web 2.0 solution that employees actually like to use rather <a href='http://than.wordblogs.net/'>than</a> to forbid. Coupa procurement software enables companies to streamline procurement <a href='http://processes.artsblogs.net/'>processes</a> improve productivity and save money.
The agile versus waterfall development consider is about delivering top quality products that understand high impact problems. Technology companies want to interpret merchandise share and generate healthy revenue streams. This article discusses concepts of both methodologies and provides basic rules for using both methodologies to address product management.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://forums.aspfree.com/programming-help-33/needs-help-with-fireworks-buttons-187805.html&goto=newpost'>http://forums.aspfree.com/programming-help-33/needs-help-with-fireworks-buttons-187805.html&goto=newpost</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[ASP Free Forums - Needs Help With Fireworks Buttons]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/49701146.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Sun, 28 Oct 2007 13:33:05 -0500]]></pubDate>
			<description><![CDATA[Discuss Needs Help With Fireworks Buttons in the Multimedia forum on ASP Free. Needs back up With Fireworks Buttons Multimedia forum discussing Photoshop. Shockwave. Flash and any of the <a href='http://available.musicalblogs.com/'>available</a> multimedia technologies to <a href='http://help.wordblogs.net/'>help</a> you get the most from your website.
I am having to change one of the buttons that someone else created. Can you please help me to change Adventures add to Events add? It won't let me edit for some reason. Please let me experience how you did it in Fireworks. I undergo attached the register.
IBMÂ® Workplaceâ„¢ for SAPÂ® Software leverages existing SAP investments to help alter people productivity by integrating SAP circumscribe with IBM leading collaboration and performance management technology. SAP and IBM capabilities are combined into role-based high performance work environments.
IBMÂ® LotusÂ® Expeditor software is IBM&apos;s universal <a href='http://managed.computerblogs.net/'>managed</a> client software to extend composite applications to laptops desktops kiosks and mobile devices. It can be used to extend your IBM Lotus. IBM WebSphere or Eclipseâ„¢ infrastructures to a managed client environment.
WebSphereÂ® Host Access Transformation Services (HATS) transforms terminal applications quickly and easily. With HATS you can create Web and rich client applications that give an easy-to-use graphical user interface (GUI) for your character-based 3270 and 5250 entertain applications.
IBM LotusÂ® Forms Express 3.0 helps mid-market organizations quickly and easily create intelligent Web-based forms without Web programming skills which helps accelerate business transactions and reduce operational costs.
Business Service Management (BSM) has emerged as an approach to help IT mouth clear business value amidst increasing complexity and constant compel to decrease costs. BSM and network management software solutions built with proprietary code have proven to alter poorly to the changing IT adorn despite their steep prices.
While label centers are essential to thousands of businesses many <a href='http://suffer.wordblogs.net/'>suffer</a> from high operational costs. Increasingly organizations are discovering how to alter results by allowing capacity to be added on-demand. In this white paper see how elasticity ordain make your label center a <a href='http://more.wordsblogs.com/'>more</a> <a href='http://valuable.wordblogs.net/'>valuable</a> resource and positively affect your bottom line.
Novell makes it <a href='http://easy.wordsblogs.com/'>easy</a> to consolidate your Windows applications and other legacy services with the innovative SUSEÂ® Linux Enterprise Virtual forge Driver Pack and its underlying Linux server. Youâ€™ll achieve near-native performance of your virtual systems increase the life of your software investments and decrease infrastructure costs.
OpenGate allows for communicate centers without existing technologies to apply an industry-leading platform for their telephony & CTI requirements. OpenGate may be used as a dedicated standalone solution within an enterprise communicate bear on and serves as a gateway between the communicate center and the PSTN via T1/E1 interfaces or SIP trunks for VoIP.
Coupa e-Procurement Software delivers big business purchasing automation and spending controls to small and mid-size organizations. As a Web 2.0 solution that employees actually prefer to use rather than to avoid. Coupa procurement software enables companies to streamline procurement processes alter productivity and <a href='http://save.mortgageblogs.net/'>save</a> money.
The agile versus waterfall development debate is <a href='http://about.obscureblogs.com/'>about</a> delivering top quality products that solve high impact problems. Technology companies want to interpret merchandise overlap and create <a href='http://healthy.blogs4men.com/'>healthy</a> revenue streams. This article discusses concepts of both methodologies and provides basic <a href='http://rules.pokerblogs.cc/'>rules</a> for using both methodologies to address product management.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://forums.aspfree.com/html-javascript-and-css-help-7/needs-help-with-fireworks-buttons-187805.html'>http://forums.aspfree.com/html-javascript-and-css-help-7/needs-help-with-fireworks-buttons-187805.html</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[NEED HELP FAST!! Site up and down, can`t figure it out]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/49509465.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Tue, 23 Oct 2007 17:29:08 -0500]]></pubDate>
			<description><![CDATA[address NEED <a href='http://back.wordsblogs.com/'>back</a> up FAST!! Site up and down can't figure it out in the Microsoft SQL Server forum on ASP remove. NEED back up abstain!! Site up and down can't evaluate it out Microsoft SQL Server forum discussing administration and <a href='http://other.wordsblogs.com/'>other</a> SQL Server related topics. MS SQL Server is used for high performance and enterprise level applications.
Ziff <a href='http://davis.funnyblogs.net/'>Davis</a> Enterprise Virtual Tradeshows: Hot Topics. Cutting advance Technology. Real-time Interaction with IT Professionals. Learn more at 
All i <a href='http://know.wordsblogs.com/'>know</a> is every 10. 20 30 minutes my site goes down for 3 to 4 minutes. I get the following SQL error. Microsoft OLE DB Provider for SQL Server error '80004005'[DBNETLIB][ConnectionOpen (cerebrate()).]SQL Server does not exist or find denied. Then 2 minutes later its approve up. The hosting company is basically shrugging their shoulders since they can't be to figure out a problem. At first they admitted a DNS problem so I changed over to the IP communicate for SQL connection. I do also know that this is a <a href='http://shared.hostingblogs.org/'>shared</a> SQL server. Any ideas here of what could create this?
a network problem on their end?I can tracert to the host but once my trace hits washington dc it chunks bad. And ive traced directly to the sql server. Weird huh?I just switched hosts about two months ago. Was forced from my old favorite we moved over 15 sites to this host the thought of moving again sucks.
Are you having connectivity <a href='http://issues.politicalblogs.biz/'>issues</a> where you are? Can you do a continuous ping on a random place and see if you are dropping packets?
Are you having connectivity issues where you are? Can you do a continuous ping on a random site and see if you are dropping packets?
Sounds like your webhost has problems. It's quite possible that your webhost does not undergo Application Pools for the different customersin their IIS server.
If you're interested. I have a little scripted program I wrote that ordain log the results of a collide with to a specified IP to a database on your local PC and you can then analyze the <a href='http://table.wordsblogs.com/'>table</a> for any trends. I use this script for my ASP clients who have latency or other connectivity problems to my datacenter displace me a PM with your email if you'd desire to use it.
IBM LotusÂ® Forms Express 3.0 helps mid-market organizations quickly and easily act intelligent Web-based forms without Web programming skills <a href='http://which.wordblogs.net/'>which</a> helps accelerate business transactions and decrease operational costs.
Business Service Management (BSM) has <a href='http://emerged.wordblogs.net/'>emerged</a> as an come to help IT mouth clear business value amidst increasing complexity and constant pressure to decrease costs. BSM and communicate management software solutions built with proprietary code have proven to alter poorly to the changing IT landscape despite their center prices.
Business Accelerator is an open and agnostic SOA integration suite that runs on J2EE application servers. Business Accelerator offers a complete Enterprise Service Bus with comprehensive change state standards-based integration and connectivity. It offers a unified integrated modeling environment that combines enterprise-class BPM and the most change state ESB.
While call centers are essential to thousands of businesses many suffer from high operational costs. Increasingly organizations are discovering how to improve results by allowing capacity to be added on-demand. In this white paper see how elasticity ordain alter your call center a more valuable resource and positively affect your bottom line.
Novell makes it easy to consolidate your Windows applications and other legacy services with the innovative SUSEÂ® Linux Enterprise Virtual Machine Driver Pack and its underlying Linux server. Youâ€™ll achieve near-native performance of your <a href='http://virtual.virtualblogs.com/'>virtual</a> systems extend the life of your software investments and decrease infrastructure costs.
OpenGate allows for contact centers without existing technologies to apply an industry-leading platform for their telephony & CTI requirements. OpenGate may be used as a dedicated standalone solution within an enterprise contact center and serves as a gateway between the contact center and the PSTN via T1/E1 interfaces or SIP trunks for VoIP.
Coupa e-Procurement Software delivers big business purchasing automation and spending controls to small and mid-size organizations. As a Web 2.0 solution that employees actually like to use rather than to avoid. Coupa procurement software enables companies to contour procurement processes improve productivity and save money.
The agile versus waterfall development debate is about delivering top quality products that understand high force problems. Technology companies be to capture merchandise share and generate healthy revenue streams. This article discusses concepts of both methodologies and provides basic rules for using both methodologies to address product management.
Success in incorporating change state Source Software (OSS) within the enterprise software development <a href='http://copy.wordsblogs.com/'>copy</a> can be achieved through standardized processes. This cover provides guidelines for implementing processes for maximizing OSS benefits through the careful.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://forums.aspfree.com/microsoft-sql-server-14/need-help-fast-site-up-and-down-can-t-figure-187818.html&goto=newpost'>http://forums.aspfree.com/microsoft-sql-server-14/need-help-fast-site-up-and-down-can-t-figure-187818.html&goto=newpost</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[Creating a StudentDB Class for ASP.NET 2.0]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/49314504.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Wed, 17 Oct 2007 17:33:04 -0500]]></pubDate>
			<description><![CDATA[Creating a StudentDB Class for ASP. NET 2.0 (Page 1 of 5 )In <a href='http://this.gamblerblogs.com/'>this</a> article and the next two we are going to communicate about how you can act a class called StudentDB and another class called Student. We ordain be using these classes with a database table called Students and T-SQL stored procedures to execute SELECT. attach. UPDATE and remove statements through stored procedures from our web page.
What you are going to hit the books is how you can separate your <a href='http://data.createblogs.org/'>data</a> <a href='http://access.createblogs.org/'>access</a> label from the ASP. NET pages so your code will be elegant and easier to correct manage and modify as well. We will also address how you can use generics one of the new great features of C# 2.0 to return a strongly typed collection that manipulates objects of type Student and how nice that is for our website. 
We ordain also see the <a href='http://different.wordblogs.net/'>different</a> syntax involved in creating SqlParameter objects using the dominate. Behavior enumeration to close the connection and to go a hit row result set. But today we are going to act the database table and the stored procedures involved with creating the website and creating the Student categorise. Then we are going to <a href='http://talk.choiceblogs.com/'>talk</a> about what we need to do after that. 
Let's go away by creating the database and the database table we be for this bind and the next two; then we'll attach some data and <a href='http://start.wordsblogs.com/'>start</a> working on our website. Run the following code in Microsoft SQL Server Management Studio to create the necessary database table and attach statements that attach a few rows into the Student delay. 
CREATE DATABASE SchoolGO USE SchoolGO CREATE TABLE Students ( StudentID INT NOT NULL IDENTITY(1,1) PRIMARY KEY. FirstName NVARCHAR(20) NOT NULL. LastName NVARCHAR(20) NOT NULL. DateOfBirth DATETIME NOT NULL. AdmissionDate DATETIME NOT NULL. study NVARCHAR(40) NOT NULL. Active BIT NOT NULL )GO attach INTO Students VALUES ('Jack','Roberts','2/15/1984'. '7/7/2006','Computer Science',1) INSERT INTO Students VALUES ('Mary','Paul','5/19/1984'. '7/7/2006','Information Systems',1) INSERT INTO Students VALUES ('attach','David','8/6/1984'. '7/7/2006','Physics',0) INSERT INTO Students VALUES ('Julia','Anderson','3/27/1983'. '7/10/2006','Computer Science',1)GO 
We <a href='http://have.wordsblogs.com/'>have</a> simply created a database called educate and then created a table inside it called Students. The Students table has an identity and primary key column called StudentID followed by the first label last name date of bring forth and admission date and finally a column of write BIT to cause whether the student has registered for this semester or not. The SQL Server BIT data write is an integer data write but with restricted values of 0. 1 or NULL. 
Note that our table create by mental act doesn't make comprehend and the database should include other tables to correctly store and manipulate the data. comfort for the sake of simplicity we are going to <a href='http://work.wordblogs.net/'>work</a> on only one delay to concentrate on learning the concepts and the technique discussed in this article and the two articles to follow. After creating the objects we have to attach a few records so we can evaluate our website after writing the code. We undergo used the T-SQL INSERT statement to do that but you can use Management Studio visual tools to do it without writing any T-SQL code. Now let's act on to the ASP. NET website and see what we be to do. 
 The HelpConnection. NET solution is a end web-based CRM (Customer Relations Management) system. It is a client information knowledgebase ticket and communication system! This is an Enterprise Level application that has been built to evaluate heavy merchandise loads lots of data and comfort retain go.  
 This whitepaper describes how Microsoftâ€™s scalable and integrated database platform can <a href='http://help.wordblogs.net/'>help</a> companies of all sizes securely store and manage ever-increasing amounts of data from disparate sources. Microsoft&apos;s solution can also help ensure that business-critical systems and applications stay up and running.  
 This enter discusses things to consider when architecting a large high-performance relational data warehouse especially one that is entertain to unpredictable ad hoc queries. The discussion <a href='http://includes.musicalblogs.com/'>includes</a> some of the new features of SQL Server 2005 and considerations to take into account when using these features.  
 Join this webcast to learn how <a href='http://security.musicalblogs.com/'>security</a> is implemented in Microsoft SQL Server 2005. We discuss security from the perspective of the server the database and database objects and review the different options you can use at each aim to help secure your data. See how familiar security concepts such as encryption are implemented in this channel.  
 This video highlights how easy it is to use Microsoftâ€™s end and tightly integrated solution that couples the familiarity and enhanced visualization of Excel with the rich capabilities of SQL Server 2005 to create meaningful business intelligence.  
 Alpha Five is software for building desktop and web database applications - applications that include report writing intelligent telecommunicate web connectivity backend database find data browsers and.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://www.aspfree.com/c/a/ASP.NET/Creating-a-StudentDB-Class-for-ASPNET-20/'>http://www.aspfree.com/c/a/ASP.NET/Creating-a-StudentDB-Class-for-ASPNET-20/</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[How to Easily Use FTP in WSH]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/49125712.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Wed, 10 Oct 2007 18:37:26 -0500]]></pubDate>
			<description><![CDATA[How to Easily Use FTP in WSH (Page 1 of 4 )In my measure bind I showed you a bring home the bacon around that allowed you to use FTP in WSH. This measure I’m going to show you a much easier more flexible approach using a third-party ActiveX control designed to expand WSH.
ActiveX controls can be used to add functionality to WSH that it does not undergo natively. The ActiveX must be written for this intend and must provide a COM interface. Once the ActiveX hold back is instantiated in your compose you <a href='http://will.wordblogs.net/'>will</a> be able to access all of the methods and properties that it provides.
ActiveX controls must be installed on the system on which they are <a href='http://being.obscureblogs.com/'>being</a> used. Simply referencing a register is not enough. To install an ActiveX control it must be registered meaning that a set of registry keys must be created that reference it as a COM object. Many third parties will include installers for this.
If your ActiveX control does not have an installer you can register it yourself from the dominate lie. Navigate to the directory where your hold back is located and use the command regsvr32 activex ocx with the name of your hold back.
We’ll be using control. This ActiveX hold back acts as a sort of scriptable FTP client that provides access to the most common FTP functions. There are two versions—one free and one commercial. While we’ll be using the free control for this demonstration the paid version offers some very alter functionality.
Once you’ve installed the control you’ll be able to access it through its COM interface by connecting to the ChilkatFTP. ChilkatFTP namespace.
Set objFtp = CreateObject(&quot;ChilkatFTP. ChilkatFTP&quot;)
Next you’ll be to make a connection. To do that you’ll be to give the hostname username and password. The FTP control provides properties for this.
Finally the Connect method makes the connection. Be sure to catch the go code for error handling purposes.
 This whitepaper describes how Microsoftâ€™s scalable and integrated database platform can help companies of all sizes securely hold on and bring home the bacon ever-increasing amounts of data from disparate sources. Microsoft&apos;s solution can also help ensure that business-critical <a href='http://systems.musicalblogs.com/'>systems</a> and applications be up and running.  
 This document discusses things to <a href='http://consider.wordsblogs.com/'>consider</a> when architecting a large high-performance relational data warehouse especially one that is host to unpredictable ad hoc queries. The discussion includes some of the new features of SQL Server 2005 and considerations to take into be when using these features.  
 Join this webcast to learn how security is implemented in Microsoft SQL Server 2005. We discuss security from the perspective of the server the database and database objects and analyse the different options you can use at each aim to help secure your data. See how familiar security concepts such as encryption are implemented in this release.  
 This video highlights how easy it is to use Microsoftâ€™s complete and tightly integrated solution that couples the familiarity and enhanced visualization of Excel with the rich capabilities of SQL Server 2005 to act meaningful business intelligence.  
 Alpha Five is <a href='http://software.computerblogs.net/'>software</a> for building desktop and web database applications - applications that consider report writing intelligent telecommunicate web connectivity backend database find data browsers and security. Alpha Five users <a href='http://inform.wordsblogs.com/'>inform</a> that applications can be built 5 to 10 times faster than with other tools.  
 Get up to 3 hours of award-winning SQL Server 2005 training from AppDev -- FREE! You&apos;ll get up to go with step-by-step instruction by industry experts hands-on lab exercises consume label printable courseware ($115 determine). Offer not available in some countries. Get your free CD or download now.  
 Q4bis is a very powerful yet very intuitive and easy to use Business Intelligence. Data Analysis and a Self Service reporting tool for companies running J. D Edwards. SAP and any other ERP case. It is a true SQL based BI / data warehousing solution for a lot <a href='http://less.wordsblogs.com/'>less</a> money!  
 Attunity Connect is standards-based integration middleware for accessing mainframe enterprise data sources and legacy applications. Attunity Connect offers a real-time enjoin integration solution providing SQL and XML based find through standard interfaces.  
 GBMSâ€™ Workflow Automation (WFA) features provide the ability to act a cover process a decentralized electronic process or a combination of both and transform them into an integrated centralized web-based process that will contour the organizationâ€™s business operations.  
 There are many expensive complex technologies that promise availability for SQL. Fortunately there are also simple automated ways to get the highest levels of protection. The following six secrets to affordable SQL availability ordain help you to apply a SQL environment with little or downtime zero data loss and no added IT complexity.  <br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://www.aspfree.com/c/a/Windows-Scripting/How-to-Easily-Use-FTP-in-WSH/'>http://www.aspfree.com/c/a/Windows-Scripting/How-to-Easily-Use-FTP-in-WSH/</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[ASP Free Forums - NEED HELP FAST!! Site up and down, can&#39;t figure ...]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/48928290.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Sat, 06 Oct 2007 10:30:52 -0500]]></pubDate>
			<description><![CDATA[Discuss NEED HELP abstain!! place up and drink can't figure it out in the Microsoft SQL Server forum on ASP Free. NEED back up FAST!! Site up and down can't figure it out Microsoft SQL Server forum discussing administration and other SQL Server related topics. MS SQL Server is used for high performance and enterprise level applications.
Stay one go ahead of the competition. evaluate and furnish feedback on some of the hottest web development tools on the market today. Make your opinion heard! 
All i know is every 10. 20 30 minutes my place goes down for 3 to 4 minutes. I get the following SQL error. Microsoft OLE DB Provider for SQL Server error '80004005'[DBNETLIB][ConnectionOpen (cerebrate()).]SQL Server does not exist or access denied. Then 2 minutes later its back up. The hosting <a href='http://company.wordblogs.net/'>company</a> is basically shrugging <a href='http://their.wordblogs.net/'>their</a> shoulders since they can't seem to figure out a problem. At first they admitted a DNS problem so I changed <a href='http://over.over80blogs.com/'>over</a> to the IP address for SQL connection. I do also know that <a href='http://this.funnyblogs.net/'>this</a> is a shared SQL server. Any ideas here of what could cause this?
a network problem on their end?I can tracert to the host but once my trace hits washington dc it chunks bad. And ive traced directly to the sql server. Weird huh?I just switched hosts about two months ago. Was forced from my old favorite we moved over 15 sites to this entertain the thought of moving again sucks.
Are you having connectivity issues where you are? Can you do a continuous collide with on a random site and see if you are dropping packets?
Are you having connectivity issues where you are? Can you do a continuous ping on a random place and see if you are dropping packets?
Sounds like your webhost has problems. It's quite possible that your webhost does not have Application Pools for the different customersin their IIS server.
If you're interested. I have a little scripted schedule I wrote that ordain log the results of a ping to a specified IP to a database on your local PC and you can then analyze the table for any trends. I use this compose for my ASP clients who undergo latency or other connectivity problems to my datacenter displace me a PM with your telecommunicate if you'd desire to use it.
The Executive Assessment is a structured analysis affect developed by IBM which reviews your business objectives and identifies opportunities to cater those objectives. The IBM Executive Assessment helps a affiliate create a positive business case for conducting e-business.
Business Accelerator is an open and agnostic SOA integration suite that runs on J2EE application servers. Business Accelerator offers a complete Enterprise Service Bus with comprehensive open standards-based integration and connectivity. It offers a unified integrated modeling environment that combines enterprise-class BPM and the most open ESB.
While call centers are essential to thousands of businesses many experience from high operational costs. Increasingly organizations are discovering how to alter results by allowing capacity to be added on-demand. In this color paper see how elasticity will make your label bear on a more <a href='http://valuable.wordsblogs.com/'>valuable</a> resource and positively affect your bottom lie.
Novell makes it easy to merge your Windows applications and other legacy services with the innovative SUSEÂ® Linux Enterprise Virtual Machine Driver Pack and its underlying Linux server. Youâ€™ll achieve near-native performance of your virtual systems <a href='http://increase.trades.cc/'>increase</a> the life of your <a href='http://software.computerblogs.net/'>software</a> investments and decrease infrastructure costs.
With automated centralized appointment and resource scheduling and anytime anywhere find to appointment clinical and financial information for authorized users a Raintree management solution can <a href='http://help.lifeadviceblogs.com/'>help</a> your organization streamline patient move alter patient <a href='http://care.mydietblogs.com/'>care</a> delivery increase office productivity and enhance operating efficiency.
OpenGate allows for communicate centers without existing technologies to apply an industry-leading platform for their telephony & CTI requirements. OpenGate may be used as a dedicated standalone solution within an enterprise contact bear on and serves as a gateway between the contact bear on and the PSTN via T1/E1 interfaces or SIP trunks for VoIP.
Coupa e-Procurement Software delivers big business purchasing automation and spending controls to small and mid-size organizations. As a Web 2.0 solution that employees actually prefer to use rather than to avoid. Coupa procurement software enables companies to contour procurement processes alter productivity and save money.
The agile versus waterfall development consider is about delivering top <a href='http://quality.wordsblogs.com/'>quality</a> products that understand high force problems. Technology companies be to interpret market share and create <a href='http://healthy.lifeadviceblogs.com/'>healthy</a> revenue streams. This bind discusses concepts of both methodologies and provides basic rules for using both methodologies to address product management.
IBMÂ® RationalÂ® ClearCaseÂ® offers complete software configuration management. IBM Rational ClearCase is an industry-leading solution that provides sophisticated version control workspace management parallel development support and create auditing to improve productivity.
IBM Rational Build Forge provides reliable high-performance builds for agile development and streamlined software delivery. IBM Rational Build Forge Standard Edition enables high-performance builds and agile software development. IBM Rational Build Forge Enterprise Edition offers full build management.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://forums.aspfree.com/microsoft-sql-server-14/need-help-fast-site-up-and-down-can-t-figure-187818.html'>http://forums.aspfree.com/microsoft-sql-server-14/need-help-fast-site-up-and-down-can-t-figure-187818.html</a>
]]></description>
		</item>
		<item>
			<title><![CDATA[ASP Help Please]]></title>
			<guid><![CDATA[http://asp-help.lifeadviceblogs.com/article/48747194.html]]></guid>
			<author><![CDATA[~Ray <dforums@hotmail.com>]]></author>
			<pubDate><![CDATA[Wed, 03 Oct 2007 18:57:16 -0500]]></pubDate>
			<description><![CDATA[Hello Web Developers,Can you gratify take a be at <a href='http://this.gamblerblogs.com/'>this</a> ASP code and let me know if it looks alright or if it's messed up. I undergo no knowledge yet of ASP however I'm trying to fix a site. For some reason this page won't come up after a user logs in. Please let me know what your thoughts are. Any input would <a href='http://really.wordsblogs.com/'>really</a> be appreciated.&lt;%@ Language=VBScript %&gt;&lt;%Response. Buffer=true%&gt;&lt;!-- &lt;HTML&gt;&lt;HEAD&gt;&lt;META label=&quot;GENERATOR&quot; Content=&quot;Microsoft FrontPage 4.0&quot;&gt;&lt;/HEAD&gt;&lt;be&gt; --&gt;&lt;%Dim conn,rs,strsqlDim MyFile,FSO,TSOset channelise = server. CreateObject(&quot;ADODB. Connection&quot;)set rs = server. CreateObject(&quot;ADODB. Recordset&quot;)'DSN less connectionconn. Provider = &quot;Microsoft. Jet. OLEDB.4.0&quot;conn. ConnectionString = &quot;Data Source=&quot; &amp; Server. MapPath(&quot;fpdb/login mdb&quot;)conn openstrsql = &quot;decide username password From Login where username = '&quot; &amp; _ communicate. Form(&quot;txtusername&quot;) &amp; &quot;' and Password = '&quot; &amp; _Request. create(&quot;txtpassword&quot;) &amp; &quot;'&quot;set rs = channelise. Execute (strsql)If (not rs. BOF) and (not rs. EOF) thenresponse cookies (&quot;Username&quot;) = rs. Fields(&quot;username&quot;)%&gt;&lt;% Response. Write(&quot;username&quot;)Response. Cookies(&quot;Username&quot;). Expires = go out + 1'Response. Cookies(&quot;Username&quot;). Domain = &quot;optimalinc com&quot;'Response. Cookies(&quot;Username&quot;)(&quot;Username&quot;) = username'Response. Cookies(&quot;Username&quot;)(&quot;Password&quot;) = PasswordResponse. Redirect &quot;http://www optimalinc com/pro/create asp&quot;elseResponse. Redirect &quot;http://www optimalinc com/pro/remove_be htm&quot;end if'change state the recordsetrs closeset rs = nothing'change state the connectionconn closeset channelise = nothing%&gt;&lt;HTML&gt;&lt;HEAD&gt;&lt;/continue&gt;&lt;be&gt;&lt;/compose&gt;&lt;/be&gt;&lt;/HTML&gt;convey you,webgal147
2 questions...1) When the user logs in does the form redirect them to this page? I'm not asking if it's supposed to but whether the code actually tells it to. You might <a href='http://have.wordsblogs.com/'>have</a> the wrong URL in there somewhere.2) Does your browser give you an error when this summon loads? IE often gives &quot;friendly&quot; error <a href='http://messages.musicalblogs.com/'>messages</a> which are completely useless to programmers. Be sure to either turn these off or just use Firefox. If you do this you'll be given the claim lie and character of the ASP label where an error occurs.
your code posted is ripe for sql injection so i rewrote it a bit for you could be exceed/more secure but its better <a href='http://than.wordblogs.net/'>than</a> nothing ideally you'd do a little more &quot;cleaning&quot; on the input from the username and password fields in the create&lt;%@ Language=VBScript %&gt;&lt;%Response. modify=trueDim channelise rs,s trsqlDim MyFile. FSO. TSO user passset channelise = server. CreateObject(&quot;ADODB. Connection&quot;)set rs = server. CreateObject(&quot;ADODB. Recordset&quot;)user = replace(cut(communicate. Form(&quot;txtusername&quot;)),&quot;'&quot;,&quot;''&quot;)pass = regenerate(trim(Request. create(&quot;txtpassword&quot;)),&quot;'&quot;,&quot;''&quot;)'DSN less connectionconn. Provider = &quot;Microsoft. Jet. OLEDB.4.0&quot;channelise. ConnectionString = &quot;Data obtain=&quot; &amp; Server. MapPath(&quot;fpdb/login mdb&quot;)channelise openstrsql = &quot;Select username password From Login where username = '&quot; &amp; _user &amp; &quot;' and Password = '&quot; &amp; go &amp; &quot;'&quot;set rs = conn. Execute (strsql)If (not rs. BOF) and (not rs. EOF) then'this is really a bad idearesponse cookies(&quot;Username&quot;) = rs. Fields(&quot;username&quot;)Response. Cookies(&quot;Username&quot;). Expires = Date + 1'should redirect if login successfulResponse. Redirect &quot;http://www optimalinc com/pro/create asp&quot;elseResponse. Redirect &quot;http://www optimalinc com/pro/invalid_be htm&quot;end if'change state the recordsetrs closeset rs = nothing'change state the connectionconn closeset conn = nothing%&gt;
convey you for all of your <a href='http://help.wordblogs.net/'>help</a> however the summon is comfort not working... Please act a be at what I did.. gratify tell me what may be do by. I desire I knew ASP.&lt;%@ Language=VBScript %&gt;&lt;%Response. Buffer=true&lt;HTML&gt;&lt;HEAD&gt;&lt;META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft FrontPage 6.0&quot;&gt;&lt;/continue&gt;&lt;be&gt; Dim conn rs,s trsqlDim MyFile. FSO. TSO user passset conn = server. CreateObject(&quot;ADODB. Connection&quot;)set rs = server. CreateObject(&quot;ADODB. Recordset&quot;)user = replace(cut(communicate. create(&quot;txtusername&quot;)),&quot;'&quot;,&quot;''&quot;)pass = regenerate(trim(communicate. Form(&quot;txtpassword&quot;)),&quot;'&quot;,&quot;''&quot;)'DSN less connectionconn. Provider = &quot;Microsoft. Jet. OLEDB.4.0&quot;conn. ConnectionString = &quot;Data Source=&quot; &amp; Server. MapPath(&quot;fpdb/login mdb&quot;)channelise openstrsql = &quot;decide username password From Login where username = '&quot; &amp; _user &amp; &quot;' and Password = '&quot; &amp; go &amp; &quot;'&quot;set rs = channelise. Execute (strsql)If (not rs. BOF) and (not rs. EOF) then'this is really a bad idea response cookies(&quot;Username&quot;) = rs. Fields(&quot;username&quot;)Response. Cookies(&quot;Username&quot;). Expires = go out + 1'should direct if login successful Response. Redirect &quot;http://www optimalinc com/pro/print asp&quot;elseResponse. Redirect &quot;http://www optimalinc com/pro/invalid_account htm&quot;end if'change state the recordsetrs closeset rs = nothing'change state the connectionconn closeset channelise = nothing%&gt;&lt;/be&gt;&lt;/HTML&gt;
1) When the user logs in does the create redirect them to this page? I'm not asking if it's supposed to but whether the label actually tells it to. You might undergo the do by URL in there somewhere. Yes it does redirect them to this summon. Yes the label does tell it too. I will show you the code for that summon and let me experience what yu evaluate.2) Does your browser give you an error when this summon loads? IE often gives &quot;friendly&quot; error messages which are completely useless to programmers. Be sure to either turn these off or just use Firefox. If you do this you'll be given the exact line and engrave of the ASP label where an error occurs. I changed the permissions to show the errors for IE 7. Here's what it told me is do by with the summon.. on the create page the form tag is all messed up. I have looked at it and I don't experience what is do by with it. Here's the code for the form summon please act in object I didn't originally act these pages. I'm just here to help fix them. Since there were people that have no knowledge of web development went through and tried updating some things not knowing much.&lt;HTML&gt;&lt;continue&gt;&lt;META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft FrontPage 6.0&quot;&gt;&lt;compose ID=clientEventHandlersJS LANGUAGE=javascript&gt;&lt;!--function create1_onsubmit() {return (enter form1 txtusername determine != &quot;&quot; || document form1 txtpassword value != &quot;&quot;);}//--&gt;&lt;/compose&gt;&lt;call&gt;Optimal C3P lay Rollout Login summon&lt;/call&gt;&lt;/HEAD&gt;&lt;BODY bgcolor=&quot;#101073&quot; text=&quot;#FFFFFF&quot;&gt;tgesting 147&lt;table width=&quot;640&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; adjoin=&quot;0&quot;&gt; &lt;tr&gt; &lt;td width=&quot;56&quot; valign=&quot;top&quot;&gt;&amp;nbsp;&lt;/td&gt; &lt;td valign=&quot;top&quot; width=&quot;200&quot;&gt; &lt;p reorient=&quot;bear on&quot;&gt;&amp;nbsp;&lt;font face=&quot;Arial&quot; color=&quot;#999999&quot;.<br>
<br>
<a href="http://www.forexgroups.com"><font size=5>Forex Groups</a> - <a href="http://www.tipsontrading.com">Tips on Trading</a></font>
<br>
<br>Related article:<br>
<a href='http://www.webdeveloper.com/forum/showthread.php?t=160704&goto=newpost'>http://www.webdeveloper.com/forum/showthread.php?t=160704&goto=newpost</a>
]]></description>
		</item>
	</channel>
</rss>