<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
  <title>HTML Help</title>
  <link>http://htmlcodetutorial.com/help/index.php</link>
  <description>Please &lt;a href=&quot;http://www.htmlcodetutorial.com/help/search.php&quot;&gt;Search&lt;/a&gt; for the answer to your question before asking it! Thanks.</description>
  <language>english</language>
  <copyright>(c) Copyright 2009 by HTML Help</copyright>
  <managingEditor>design@htmlcodetutorial.com</managingEditor>
  <webMaster>design@htmlcodetutorial.com</webMaster>
  <pubDate>Sat Nov 21, 2009 6:32 am</pubDate>
  <lastBuildDate>Sat Nov 21, 2009 6:32 am</lastBuildDate>
  <docs>http://backend.userland.com/rss</docs>
  <generator>phpBB2 RSS Syndication Mod by Lucas</generator>
  <ttl>1</ttl>

  <image>
    <title>HTML Help</title>
    <url></url>
    <link>http://htmlcodetutorial.com/help/</link>
    <description>Please &lt;a href=&quot;http://www.htmlcodetutorial.com/help/search.php&quot;&gt;Search&lt;/a&gt; for the answer to your question before asking it! Thanks.</description>
  </image>

                                      <item>
                                        <title>ASP: Response.Redirect and Frames - Help Please!</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=56253#56253</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=28663'&gt;nsavalas&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Nov 17, 2009 1:11 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      &lt;span style=&quot;font-size: 12px; line-height: normal&quot;&gt;Dear Karin,&lt;br /&gt;
&lt;br /&gt;
I must have answered this question 100 times on other help sites and groups, but it is amazing that I accidentally found your question almost five years after you first asked it, and no one at this website has answered it for you.&lt;br /&gt;
&lt;br /&gt;
Before I answer, let me stress: &lt;span style=&quot;font-weight: bold&quot;&gt;NEVER USE FRAMES!&lt;/span&gt; Search engines cannot index your content properly, most mobile devices cannot use them at all, they make your site very hard to read for handicapped visitors, etc. Even though this code will validate with most doctypes (see: &lt;a href=&quot;http://validator.w3.org/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;http://validator.w3.org/&lt;/a&gt;), I am telling you that using this code is the wrong answer; rewrite your site - &lt;span style=&quot;font-style: italic&quot;&gt;do not use frames. Ever&lt;/span&gt;.&lt;br /&gt;
&lt;br /&gt;
This code will allow you to use response.redirect to the actual and exact link you desire without using the now deprecated &amp;quot;target&amp;quot; attribute; &lt;span style=&quot;font-style: italic&quot;&gt;the framed page itself&lt;/span&gt; will recover your frameset schema. The only downside is that your URL will be altered in the address bar. Aside from that, this code will do the job.&lt;br /&gt;
&lt;br /&gt;
Let us assume that you have a page named index.htm (or .asp, or whatever), that has your logo, navigation, etc. Here is that page's code:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Old Frameset&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;frameset rows=&amp;quot;120,*&amp;quot;&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;frame name=&amp;quot;nav&amp;quot; target=&amp;quot;content&amp;quot; src=&amp;quot;nav.htm&amp;quot;&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;frame name=&amp;quot;content&amp;quot; src=&amp;quot;1.htm&amp;quot;&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;noframes&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;p&amp;gt;This page uses frames because I am a boob.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;lt;/noframes&amp;gt;&lt;br /&gt;
&amp;lt;/frameset&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Then you have a navigation page at top (nav.htm), with some goofy code like:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Navigation&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a target=&amp;quot;content&amp;quot; href=&amp;quot;1.htm&amp;quot;&amp;gt;1&amp;lt;/a&amp;gt; - &amp;lt;a target=&amp;quot;content&amp;quot; href=&amp;quot;2.htm&amp;quot;&amp;gt;2&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
The content frame below it is 1.htm to start, so it is something like:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;Page 1&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a target=&amp;quot;_self&amp;quot; href=&amp;quot;2.htm&amp;quot;&amp;gt;Go to page 2&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
...and so on. If you were ever lucky enough to actually find your page (1.htm) on a search engine, 1.htm would be without any navigation, and just be that lonely half-page.&lt;br /&gt;
&lt;br /&gt;
Instead, let's change index.htm, our start page, to:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML Basic 1.1//EN&amp;quot;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;quot;http&amp;#58;//www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http&amp;#58;//www.w3.org/1999/xhtml&amp;quot; xml&amp;#58;lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;My less idiotic framed page&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;application/xhtml+xml; charset=utf-8&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;meta name=&amp;quot;keywords&amp;quot; content=&amp;quot;frames, are, bad&amp;quot;&amp;nbsp; xml&amp;#58;lang=&amp;quot;en&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;link rel=&amp;quot;stylesheet&amp;quot; xml&amp;#58;lang=&amp;quot;en&amp;quot; href=&amp;quot;style.css&amp;quot; type=&amp;quot;text/css&amp;quot; media=&amp;quot;screen&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body id=&amp;quot;body&amp;quot; class=&amp;quot;body&amp;quot; title=&amp;quot;page body&amp;quot; xml&amp;#58;lang=&amp;quot;en&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;index.htm&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;img src=&amp;quot;logo.jpg&amp;quot; width=&amp;quot;240&amp;quot; height=&amp;quot;60&amp;quot; alt=&amp;quot;My Logo&amp;quot; title=&amp;quot;My Logo&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;a href=&amp;quot;1.htm&amp;quot;&amp;gt;frame 1&amp;lt;/a&amp;gt; - &amp;lt;a href=&amp;quot;2.htm&amp;quot;&amp;gt;frame 2&amp;lt;/a&amp;gt;&amp;lt;/p&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
Now here's the trick: END THE PAGE WITH THIS BIT OF JAVASCRIPT&amp;#058;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br /&gt;
/* &amp;lt;!&amp;#91;CDATA&amp;#91; */&lt;br /&gt;
var curl = location.search.substring&amp;#40;1&amp;#41; ? unescape&amp;#40;location.search.substring&amp;#40;1&amp;#41;&amp;#41; &amp;#58; '1.htm';&lt;br /&gt;
document.writeln&amp;#40;'&amp;lt;iframe src=&amp;quot;'+curl+'&amp;quot; width=&amp;quot;98%&amp;quot; height=&amp;quot;480&amp;quot; style=&amp;quot;border&amp;#58; 0px inset; padding&amp;#58; 0px&amp;quot; /&amp;gt;'&amp;#41;;&lt;br /&gt;
/* &amp;#93;&amp;#93;&amp;gt; */&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
One last thing - on every page that needs to be set in a frame, add:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt; &lt;br /&gt;
if &amp;#40;self.location == top.location &amp;amp;&amp;amp;&lt;br /&gt;
location.search.substring&amp;#40;1&amp;#41; != 'nf'&amp;#41;&lt;br /&gt;
top.location.href = 'index.htm?' + escape&amp;#40;self.location&amp;#41;;&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
When you go to look at: &lt;a href=&quot;http://example.com/1.htm&quot; target=&quot;_blank&quot;&gt;http://example.com/1.htm&lt;/a&gt; in a browser, you'll get instead...&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://example.com/index.htm?http%3A//example.com/1.htm&quot; target=&quot;_blank&quot;&gt;http://example.com/index.htm?http%3A//example.com/1.htm&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
...but your page 1.htm will never be outside of it's frame. Good luck. I hope to hear from you soon. Until I do, Karin, I remain,&lt;br /&gt;
&lt;br /&gt;
Sincerely Yours,&lt;br /&gt;
Nicholas Savalas - &lt;a href=&quot;http://savalas.tv&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;http://savalas.tv&lt;/a&gt;&lt;/span&gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=56253#56253</comments>
                                        <author>nsavalas</author>
                                        <pubDate>Tue Nov 17, 2009 1:11 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=56253#56253</guid>
                                      </item>
                                      <item>
                                        <title>Unrecognized element 'system.codedom' error in web.config</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=55629#55629</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=28315'&gt;juboe&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Oct 28, 2009 10:00 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi, &lt;br /&gt;
I am Juboe. I am new to this forum and have built my first website. I had trouble learning how to upload my database to my hosting server but I think finally figured it out. &lt;br /&gt;
&lt;br /&gt;
So, I go to try it out and now the login page and after you input the username and password then hit login this happens.  I went to the web.config page and looked at the code. Here it the configuration error: &lt;br /&gt;
&lt;br /&gt;
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. &lt;br /&gt;
&lt;br /&gt;
Parser Error Message: Unrecognized element 'system.codedom'.&lt;br /&gt;
&lt;br /&gt;
Source Error: &lt;br /&gt;
&lt;br /&gt;
Line 11: 		&amp;lt;add name=&amp;quot;********&amp;quot; connectionString=&amp;quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=********.mdf&amp;quot;&amp;gt;&amp;lt;/add&amp;gt;&lt;br /&gt;
Line 12: &lt;br /&gt;
Line 13: &amp;lt;system.codedom&amp;gt;&lt;br /&gt;
Line 14: &amp;lt;compilers&amp;gt;&lt;br /&gt;
Line 15: 					&amp;lt;compiler language=&amp;quot;c#;cs;csharp&amp;quot; extension=&amp;quot;.cs&amp;quot; type=&amp;quot;Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&amp;quot; warningLevel=&amp;quot;4&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Source File: e:\InetPub\Clients\oakleafmeadowshoa.net\web.config    Line: 13  &lt;br /&gt;
&lt;br /&gt;
You would think that it will be a simple soution with tags but i must be overlooking something because the open tags match the closing tags. Here is the actual code from my web.config page. &lt;br /&gt;
&amp;lt;connectionStrings&amp;gt; &lt;br /&gt;
&amp;lt;add name=&amp;quot;*********&amp;quot; connectionString=&amp;quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Program Files\Microsoft SQL Server\MSSQL\DATA\********\SQLEXPRESS_**********.mdf&amp;quot;&amp;gt;&amp;lt;/add&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;system.codedom&amp;gt; &lt;br /&gt;
&amp;lt;compilers&amp;gt; &lt;br /&gt;
&amp;lt;compiler language=&amp;quot;c#;cs;csharp&amp;quot; extension=&amp;quot;.cs&amp;quot; type=&amp;quot;Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&amp;quot; warningLevel=&amp;quot;4&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;providerOption name=&amp;quot;CompilerVersion&amp;quot; value=&amp;quot;v3.5&amp;quot;/&amp;gt; &lt;br /&gt;
&amp;lt;providerOption name=&amp;quot;WarnAsError&amp;quot; value=&amp;quot;false&amp;quot;/&amp;gt;&amp;lt;/compiler&amp;gt; &lt;br /&gt;
&amp;lt;compiler language=&amp;quot;vb;vbs;visualbasic;vbscript&amp;quot; extension=&amp;quot;.vb&amp;quot; type=&amp;quot;Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089&amp;quot; warningLevel=&amp;quot;4&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;providerOption name=&amp;quot;CompilerVersion&amp;quot; value=&amp;quot;v3.5&amp;quot;/&amp;gt; &lt;br /&gt;
&amp;lt;providerOption name=&amp;quot;OptionInfer&amp;quot; value=&amp;quot;true&amp;quot;/&amp;gt; &lt;br /&gt;
&amp;lt;providerOption name=&amp;quot;WarnAsError&amp;quot; value=&amp;quot;false&amp;quot;/&amp;gt;&amp;lt;/compiler&amp;gt;&amp;lt;/compilers&amp;gt; &lt;br /&gt;
&amp;lt;/system.codedom&amp;gt;&lt;br /&gt;
&amp;lt;/connectionStrings&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Can anyone see what I am missing?? Any help would be appreciated.  I really need to get this website operational.&lt;br /&gt;
&lt;br /&gt;
Thanks, &lt;br /&gt;
Juboe</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=55629#55629</comments>
                                        <author>juboe</author>
                                        <pubDate>Wed Oct 28, 2009 10:00 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=55629#55629</guid>
                                      </item>
                                      <item>
                                        <title>Send 'Contact Us' form in email onSubmit with asp</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=54744#54744</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Sep 28, 2009 3:23 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      You're welcome. That one seems to be a favorite of everyone. &lt;img src=&quot;images/smiles/icon_razz.gif&quot; alt=&quot;Razz&quot; border=&quot;0&quot; /&gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=54744#54744</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Mon Sep 28, 2009 3:23 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=54744#54744</guid>
                                      </item>
                                      <item>
                                        <title>Applying CSS inside of a .asp file</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=54709#54709</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sun Sep 27, 2009 7:32 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      You're welcome. That is going to be a lot of work and learning as you go, but it'll be worth it in the long run.&lt;br /&gt;
&lt;br /&gt;
Good Luck!</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=54709#54709</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Sun Sep 27, 2009 7:32 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=54709#54709</guid>
                                      </item>
                                      <item>
                                        <title>html form w/attachment using ASP</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=54471#54471</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=27804'&gt;nhattruong&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Sep 16, 2009 11:04 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      &lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;james_reis wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;quote&quot;&gt;Update: Ok. I found out the above code works fine but I'm changing my plan. I want to send the form to an &lt;br /&gt;
e-mail but I want the documents to upload to a separate folder on godaddy. &lt;br /&gt;
&lt;br /&gt;
When the recipient opens the e-mail they'll have the senders information from the form and links to the documents on the server, so when they go to that page they can download them to where ever they want to. That way if some one want to upload a big file in the e-mail it won't effect the upload limit for the &lt;br /&gt;
e-mail account. &lt;br /&gt;
&lt;br /&gt;
Is there an easy way to do that?&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
thank you for sharing&lt;br /&gt;
--------------------------&lt;br /&gt;
&lt;a href=&quot;http://muabanperfume.com/main&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;nuoc hoa&lt;/a&gt;| &lt;a href=&quot;http://muabanperfume.com/danhmuc/23.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;nuoc hoa nam&lt;/a&gt;|&lt;a href=&quot;http://muabanperfume.com/danhmuc/25.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;nuoc hoa nu&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[/url]</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=54471#54471</comments>
                                        <author>nhattruong</author>
                                        <pubDate>Wed Sep 16, 2009 11:04 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=54471#54471</guid>
                                      </item>
                                      <item>
                                        <title>Registration Form Code</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=53303#53303</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=27140'&gt;reasse&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Aug 06, 2009 2:21 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      hah to create simple registration form you need this&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FOR Register.php&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;?php&lt;br /&gt;
include &amp;#40;&amp;quot;config.php&amp;quot;&amp;#41;;&lt;br /&gt;
if &amp;#40;&amp;quot;config.php&amp;quot;&amp;#41;; &amp;#123;die&lt;br /&gt;
print &amp;#40;err&amp;#40;&amp;quot;no sql found&amp;quot;&amp;#41;&amp;#41;;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
mysql connect &amp;#40;$host,$user,$pass&amp;#41; &amp;#123;die&lt;br /&gt;
print &amp;#40;err&amp;#40;&amp;quot;sql not found&amp;#41;&amp;#41; else&amp;#125;&lt;br /&gt;
select &amp;#40;$db,connection&amp;#41;;&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;form name=&amp;quot;register&amp;quot; method=&amp;quot;post&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;username&amp;quot; size=&amp;quot;30&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;password&amp;quot; name=&amp;quot;password&amp;quot; size=&amp;quot;30&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;input type=&amp;quot;button&amp;quot; class=&amp;quot;post&amp;quot; method=&amp;quot;insert&amp;quot; name=&amp;quot;register&amp;quot; value=&amp;quot;Register&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
if &amp;#40;&amp;quot;register&amp;quot;=&amp;quot;name&amp;quot;+&amp;quot;password&amp;quot;&amp;#41;;&lt;br /&gt;
insert into table´users´ values &amp;#40;name,password&amp;#41;;&lt;br /&gt;
if &amp;#40;username=&amp;quot;&amp;quot;&amp;#41; &amp;#123;err&lt;br /&gt;
print &amp;#40;Please enter Username&amp;#41;;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
if &amp;#40;password=&amp;quot;&amp;quot;&amp;#41; &amp;#123;err&lt;br /&gt;
print &amp;#40;Please enter Password&amp;#41;;&lt;br /&gt;
&amp;#125;&lt;br /&gt;
?&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FOR DB.sql&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;structura for table ´user´&lt;br /&gt;
create table ´user´&lt;br /&gt;
&lt;br /&gt;
´username´ int&amp;#40;255&amp;#41; default &amp;#40;0&amp;#41;&amp;nbsp; not null,&lt;br /&gt;
´password´ int&amp;#40;30&amp;#41; default &amp;#40;0&amp;#41; not null,&lt;br /&gt;
´class´ int&amp;#40;6&amp;#41; default &amp;#40;0&amp;#41; not null;&lt;br /&gt;
&lt;br /&gt;
insert into table ´user´ ,´username´ values &amp;#40;admin&amp;#41;;&lt;br /&gt;
insert into table ´user´,´password´ values &amp;#40;admin&amp;#41;;&lt;br /&gt;
insert into table ´user´,´class´ values &amp;#40;6&amp;#41;;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
FOR CONFIG.php&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;br /&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;br /&gt;&lt;tr&gt; &lt;br /&gt;	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;	&lt;tr&gt;&lt;br /&gt;	  &lt;td class=&quot;code&quot;&gt;&amp;lt;?php&lt;br /&gt;
$host=&amp;quot;sql_host&amp;quot;&lt;br /&gt;
$user=&amp;quot;sql_user&amp;quot;&lt;br /&gt;
$pass=&amp;quot;sql_pass&amp;quot;&lt;br /&gt;
$db=&amp;quot;sql_db&amp;quot;&lt;br /&gt;
mysql_connect&amp;#40;$db_host,$db_user,$db_pass&amp;#41;;&lt;br /&gt;
@mysql_select_db&amp;#40;tonrea_game&amp;#41; or die&amp;#40; &amp;quot;SQL NOT FOUND&amp;quot;&amp;#41;;&lt;br /&gt;
?&amp;gt;&lt;/td&gt;&lt;br /&gt;	&lt;/tr&gt;&lt;br /&gt;&lt;/table&gt;&lt;br /&gt;&lt;span class=&quot;postbody&quot;&gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=53303#53303</comments>
                                        <author>reasse</author>
                                        <pubDate>Thu Aug 06, 2009 2:21 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=53303#53303</guid>
                                      </item>
                                      <item>
                                        <title>two objects on a webpage</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=52899#52899</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=26890'&gt;faizaln&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Jul 23, 2009 8:46 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi All&lt;br /&gt;
&lt;br /&gt;
I am a newbe to the wonderful world of creating webpages. We have recently purchased a application that can be delivered via the web. But in order to do anything with it, some basic html is required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I was able to put an object on a web page. But I am struggling to work out how to put a second object on the page.&lt;br /&gt;
&lt;br /&gt;
We have the object EVObject.Views.Open &amp;quot;/system/p&amp;amp;l2&amp;quot; &lt;br /&gt;
&lt;br /&gt;
I would like to ade another object called EVObject.Views.Open &amp;quot;/system/Balance sheet&amp;quot; &lt;br /&gt;
&lt;br /&gt;
help will be greatly appreciated. &lt;br /&gt;
This code below works but only loads one object&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;html&amp;gt; &lt;br /&gt;
  &amp;lt;head&amp;gt;  &lt;br /&gt;
 &lt;br /&gt;
    &amp;lt;script language=&amp;quot;vbscript&amp;quot;&amp;gt;         &lt;br /&gt;
        Sub MyOnLoad &lt;br /&gt;
            EVObject.Views.Open &amp;quot;/system/p&amp;amp;l2&amp;quot; &lt;br /&gt;
	 	EVObject.Theme = &amp;quot;olive&amp;quot;&lt;br /&gt;
       End Sub &lt;br /&gt;
   &lt;br /&gt;
        &lt;br /&gt;
   &amp;lt;/script&amp;gt; &lt;br /&gt;
  &amp;lt;/head&amp;gt; &lt;br /&gt;
  &amp;lt;body onload=&amp;quot;MyOnLoad&amp;quot; topmargin=100 leftmargin=100&amp;gt; &lt;br /&gt;
&lt;br /&gt;
    &amp;lt;object id=EVObject top= 1000 height=600 width=600 classid=clsid:ACAC1200-0BBE-499A-A9E9-5F334DBC8E89&amp;gt; &lt;br /&gt;
        &amp;lt;param name=&amp;quot;server&amp;quot; value=&amp;quot;aunswa155&amp;quot;&amp;gt; &lt;br /&gt;
    &lt;br /&gt;
  &amp;lt;/body&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=52899#52899</comments>
                                        <author>faizaln</author>
                                        <pubDate>Thu Jul 23, 2009 8:46 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=52899#52899</guid>
                                      </item>
                                      <item>
                                        <title>ASP Field Validation</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=52554#52554</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=26707'&gt;martinscott&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Jul 13, 2009 5:19 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hey Guys,&lt;br /&gt;
Any and all help would be greatly appreciated.&lt;br /&gt;
&lt;br /&gt;
Here is a simple ASP script that collects information and sends an e-mail. There is only one problem. People can just submit a blank one. I have searched around the internet and cannot find any helpful tutorials on this. What I am needing to do is juat make it so that something must be entered in each field. Not anything complex at all, just so that it cannot be blank. One again, any and help would be appreciated. Here is the code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;%&lt;br /&gt;
Dim UsableDate&lt;br /&gt;
UsableDate = WeekDayName(WeekDay(Date), true) &amp;amp; &amp;quot;, &amp;quot; &amp;amp; Day(Date) &amp;amp; &amp;quot; &amp;quot; &amp;amp; MonthName(Month(Date), true) &amp;amp; &amp;quot; &amp;quot; &amp;amp; Year(Date) &amp;amp; &amp;quot; &amp;quot; &amp;amp; FormatDateTime(DateAdd(&amp;quot;h&amp;quot;, 2, now), 4) &amp;amp; &amp;quot; (CST)&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Name = Request.Form(&amp;quot;name&amp;quot;)&lt;br /&gt;
UserEmail = Request.Form(&amp;quot;email&amp;quot;)&lt;br /&gt;
Company = Request.Form(&amp;quot;Company&amp;quot;)&lt;br /&gt;
Street = Request.Form(&amp;quot;Street&amp;quot;)&lt;br /&gt;
Street2 = Request.Form(&amp;quot;Street2&amp;quot;)&lt;br /&gt;
City = Request.Form(&amp;quot;City&amp;quot;)&lt;br /&gt;
State = Request.Form(&amp;quot;State&amp;quot;)&lt;br /&gt;
Zip = Request.Form(&amp;quot;Zip&amp;quot;)&lt;br /&gt;
Phone = Request.Form(&amp;quot;phone&amp;quot;)&lt;br /&gt;
Fax = Request.Form(&amp;quot;fax&amp;quot;)&lt;br /&gt;
Comments = Request.Form(&amp;quot;comments&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
Set Mailer = Server.CreateObject(&amp;quot;SMTPsvg.Mailer&amp;quot;)&lt;br /&gt;
Mailer.RemoteHost = &amp;quot;mail.fakewebsite.com&amp;quot;&lt;br /&gt;
Mailer.AddRecipient &amp;quot;Sales&amp;quot;, &amp;quot;mthomas@fakewebsite.com&amp;quot;&lt;br /&gt;
Mailer.FromName = &amp;quot;Online Brochure Request&amp;quot;&lt;br /&gt;
Mailer.FromAddress = &amp;quot;do_not_reply@fakewebsite.com&amp;quot;&lt;br /&gt;
Mailer.Subject = &amp;quot;Brochure Request&amp;quot;&lt;br /&gt;
Mailer.DateTime = UsableDate&lt;br /&gt;
If IsEmpty(UserEmail) or IsNull(UserEmail) or UserEmail=&amp;quot;&amp;quot; then&lt;br /&gt;
Else&lt;br /&gt;
Mailer.ReplyTo = UserEmail&lt;br /&gt;
End If&lt;br /&gt;
Mailer.BodyText = &amp;quot;Date: &amp;quot; &amp;amp; UsableDate &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Name: &amp;quot; &amp;amp; Name &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Company: &amp;quot; &amp;amp; Company &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Email: &amp;quot; &amp;amp; Useremail &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Phone: &amp;quot; &amp;amp; Phone &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Fax: &amp;quot; &amp;amp; Fax &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Street: &amp;quot; &amp;amp; Street &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Street: &amp;quot; &amp;amp; Street2 &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;City: &amp;quot; &amp;amp; City &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;State: &amp;quot; &amp;amp; State &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Zip: &amp;quot; &amp;amp; Zip &amp;amp;_&lt;br /&gt;
VbCrLf &amp;amp; &amp;quot;Comments: &amp;quot; &amp;amp; Comments &amp;amp;_&lt;br /&gt;
VbCrLf&lt;br /&gt;
&lt;br /&gt;
'sends mail...required&lt;br /&gt;
if Mailer.SendMail then&lt;br /&gt;
Response.Redirect &amp;quot;http://www.fakewebsite.com/confirmation.html&amp;quot;&lt;br /&gt;
else&lt;br /&gt;
Response.Write &amp;quot;Mail send failure. Error was &amp;quot; &amp;amp; Mailer.Response&lt;br /&gt;
end if&lt;br /&gt;
%&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.schoolofseointernational.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;online seo training &lt;/a&gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=52554#52554</comments>
                                        <author>martinscott</author>
                                        <pubDate>Mon Jul 13, 2009 5:19 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=52554#52554</guid>
                                      </item>
                                      <item>
                                        <title>EMail Registration</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=50471#50471</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=31'&gt;Corey Bryant&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Fri May 01, 2009 12:19 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      You would need to look through your mail server documentation to see if they offer an API for this support.&lt;br /&gt;
&lt;br /&gt;
(Some mail servers - Exchange, SmarterMail).&lt;br /&gt;
&lt;br /&gt;
_________________&lt;br /&gt;
Corey&lt;br /&gt;
&lt;a href=&quot;http://www.mychoiceexchange.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Hosted Exchange Service&lt;/a&gt;  | &lt;a href=&quot;http://www.milehighmerchantaccount.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Mile High Merchant Accounts&lt;/a&gt; | &lt;a href=&quot;http://www.loudexpressions.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Expression Web Blog&lt;/a&gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=50471#50471</comments>
                                        <author>Corey Bryant</author>
                                        <pubDate>Fri May 01, 2009 12:19 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=50471#50471</guid>
                                      </item>
                                      <item>
                                        <title>How to replace the SoftArtisans Filup with SFTP in asp</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=48545#48545</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=24866'&gt;vinubaby777&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Mon Mar 02, 2009 9:09 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      I am working on a ASP project, where in the SoftArtisans(SA) Fileup Software is used to upload the file to IIS.&lt;br /&gt;
&lt;br /&gt;
Now I am working on this enhancement, where I have to develop the application which is SoftArtisans Fileup free. I mean my application should do a simple SFTP without the help of the SA Fileup.&lt;br /&gt;
&lt;br /&gt;
Help me..Someone who has worked on S Fileup.&lt;br /&gt;
&lt;br /&gt;
Warm Regards.</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=48545#48545</comments>
                                        <author>vinubaby777</author>
                                        <pubDate>Mon Mar 02, 2009 9:09 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=48545#48545</guid>
                                      </item>
                                      <item>
                                        <title>survey report - asp</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=48395#48395</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Feb 26, 2009 11:32 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      &lt;a href=&quot;http://www.aspin.com/home/webapps/vote&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;ASP Survey Scripts, ASP Poll code, Quiz Script, Vote&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.hotscripts.com/category/asp/scripts-components/polls-voting/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;ASP Polls &amp;amp; Voting&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.sourcecodeonline.com/sources/asp/survey_and_voting.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;ASP &amp;gt; Survey and Voting Source List&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official&amp;amp;hs=KBm&amp;amp;q=asp+survey+script&amp;amp;revid=1891602009&amp;amp;ei=Lu2mSffzH4-EtgedvOXcDw&amp;amp;sa=X&amp;amp;oi=revisions_inline&amp;amp;resnum=0&amp;amp;ct=broad-revision&amp;amp;cd=5&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Source and other links&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
You should be able to find something that will work for you among all those ASP scripts.</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=48395#48395</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Thu Feb 26, 2009 11:32 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=48395#48395</guid>
                                      </item>
                                      <item>
                                        <title>To get the current time of tasks in share point</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=47156#47156</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=24350'&gt;MSys&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Tue Jan 20, 2009 2:58 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Hi,&lt;br /&gt;
&lt;br /&gt;
How to get the current time in another field as current_time of tasks.Not the modified date and where we have to write the code..please</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=47156#47156</comments>
                                        <author>MSys</author>
                                        <pubDate>Tue Jan 20, 2009 2:58 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=47156#47156</guid>
                                      </item>
                                      <item>
                                        <title>Adding Subscribe box on website</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=46232#46232</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=31'&gt;Corey Bryant&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Thu Dec 11, 2008 8:16 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      So a newsletter script then?  Maybe this one will help: &lt;a href=&quot;http://www.hotscripts.com/ASP/Scripts_and_Components/Mailing_List_Managers/index.html&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;ASP Newsletter Scripts&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
There are also hosted solutions like &lt;a href=&quot;http://www.constantcontact.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Constant Contact&lt;/a&gt; to help you manage your users and emails.&lt;br /&gt;
&lt;br /&gt;
Now the more that I think about it, an RSS feed might be useful as well.  Are you creating new pages (posts) in some type of a blog?  Most blogs offer an RSS feed type system.  Here is an example of an RSS Feed: &lt;a href=&quot;http://www.loudexpressions.com/feeds.asp&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Expression Web Blog RSS Feed&lt;/a&gt;.  You can choose what type of feed - something like &lt;a href=&quot;http://www.loudexpressions.com/rss.xml&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;RSS feed&lt;/a&gt;.  Most browsers have a RSS reader built in so when a feed is in the browser, you have the option to subscribe to it.&lt;br /&gt;
&lt;br /&gt;
_________________&lt;br /&gt;
Corey&lt;br /&gt;
&lt;a href=&quot;http://www.loudvoicesystem.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Toll Free Fax Numbers&lt;/a&gt;  | &lt;a href=&quot;http://merchant-account-for-yahoo.loudcommerce.com/&quot; target=&quot;_blank&quot; class=&quot;postlink&quot; rel=&quot;nofollow&quot;&gt;Yahoo Merchant Account&lt;/a&gt;</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=46232#46232</comments>
                                        <author>Corey Bryant</author>
                                        <pubDate>Thu Dec 11, 2008 8:16 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=46232#46232</guid>
                                      </item>
                                      <item>
                                        <title>Creating a Template in ASP wth dynamic text &amp;amp; images</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=46218#46218</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=23802'&gt;sonali&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Wed Dec 10, 2008 9:52 pm&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      Thanks Corey,&lt;br /&gt;
   It solved my problem.</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=46218#46218</comments>
                                        <author>sonali</author>
                                        <pubDate>Wed Dec 10, 2008 9:52 pm</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=46218#46218</guid>
                                      </item>
                                      <item>
                                        <title>AJAX programming</title>
                                        <link>http://htmlcodetutorial.com/help/viewtopic.php?p=44935#44935</link>
                                        <description>&lt;br /&gt;
                                      Author: &lt;a href='http://htmlcodetutorial.com/help/profile.php?mode=viewprofile&amp;u=13957'&gt;PayneLess Designs&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;
                                      Posted: Sat Nov 01, 2008 11:15 am&lt;br /&gt;&lt;br /&gt;
                                      &lt;br /&gt;&lt;br /&gt;
                                      And your question is? If not asking a question, your post will be removed.</description>
                                        <comments>http://htmlcodetutorial.com/help/viewtopic.php?p=44935#44935</comments>
                                        <author>PayneLess Designs</author>
                                        <pubDate>Sat Nov 01, 2008 11:15 am</pubDate>
                                        <guid isPermaLink="true">http://htmlcodetutorial.com/help/viewtopic.php?p=44935#44935</guid>
                                      </item></channel></rss>