<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018284" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018284</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/how-do-i-target-responsewrite#comment-1107277</link>
    <description> &lt;p&gt;There really is no difference between processing your form in the current asp page or passing the results to another, they&#039;re both asp pages.&lt;/p&gt;
&lt;p&gt;It shouldn&#039;t throw an error if it is blank (make sure you put quotes around it, otherwise you might run into null/integer problems), if you&#039;re doing any validation on those vars just verify they&#039;re not blank before you start.&lt;/p&gt;
&lt;p&gt;Feel free to post back with anymore questions, that&#039;s why we&#039;re here.&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Apr 2002 21:44:04 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1107277 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/how-do-i-target-responsewrite#comment-1107240</link>
    <description> &lt;p&gt;I think Abhishek Reddy is right.  I need to do my form validation on the same page as the form -- then I wouldn&#039;t have the need to redirect back.  I&#039;m new at ASP.  This is only my 3rd application.  The way I&#039;ve done my validation, run stored procedures, etc., is to submit the form to a separate page that contains all the form processing code, then redirect back to the original form page.&lt;/p&gt;
&lt;p&gt;So... How do i put it all in the same page?  Any issues I need to be concered about?  I guess I thought something like  var=Request.Form(&quot;fieldname&quot;) would throw an error the first time the page is loaded since the form hasn&#039;t been filled in yet.  Does it just ignore it untiil the form is submitted to the same page?&lt;/p&gt;
&lt;p&gt;I will be working on this today.  May I right back if I run into trouble?&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Apr 2002 16:29:59 +0000</pubDate>
 <dc:creator>Angela French</dc:creator>
 <guid isPermaLink="false">comment 1107240 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/how-do-i-target-responsewrite#comment-1107209</link>
    <description> &lt;p&gt;As Abhishek said, ASP is server side so it doesn&#039;t gve you control over client side stuff like windows. Sometimes when I have to do stuff like this I combine ASP into client-side javascript, for example:&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;Dim LoadPage&lt;br /&gt;&lt;br /&gt;LoadPage &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;findClient.asp?error=invalid&quot;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;script language = JavaScript&amp;gt;&lt;br /&gt;
var IsPage = &#039;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;LoadPage&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;if (IsPage != &quot;&quot;) {&lt;br /&gt;
window.open(IsPage)&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/script&amp;gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Apr 2002 12:01:54 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1107209 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/server-side-scripting/how-do-i-target-responsewrite#comment-1107205</link>
    <description> &lt;p&gt;Why not do whatever execution is done that results in the redirect command to be done in the popup itself?&lt;/p&gt;
&lt;p&gt;Sorry my answer may be vague but I&#039;m not sure of the details of your script. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Could you please post what the script does/how it works? &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;ASP is server-side. It can&#039;t control how the browser handles client-side stuff like new windows and so on. That&#039;s why it&#039;d help to know some more details, to find somewhere to throw in the JS code that&#039;ll do what you need. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Thu, 18 Apr 2002 11:40:49 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1107205 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
