<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Migrating from ASP to ASP.NET</title><link>http://forums.asp.net/29.aspx</link><description>Discuss moving from classic ASP to ASP.NET. </description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3152639.aspx</link><pubDate>Sat, 09 May 2009 18:15:24 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3152639</guid><dc:creator>ezhillmaran</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3152639.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3152639</wfw:commentRss><description>Ho! then i have to go for some other solution... anyway thanks for all your answer..&lt;br /&gt;</description></item><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3151551.aspx</link><pubDate>Fri, 08 May 2009 20:42:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3151551</guid><dc:creator>Kulrom</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3151551.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3151551</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;The only thing i can think of is using of Response object. &lt;/p&gt;&lt;p&gt;If you just invoke the ASP classic page using httpRequest/Response methods you can get the writen values as plain text or xml.&lt;/p&gt;&lt;p&gt;But in that case your VBScript code should write the value(s) down to the page. e.g.&lt;/p&gt;&amp;nbsp;&lt;pre class="coloredcode"&gt;&lt;span class="cmt"&gt;&amp;#39; Just a rough example&lt;/span&gt;
&lt;span class="kwd"&gt;Function&lt;/span&gt; getDate(id)
     Response.Write(&lt;span class="st"&gt;&amp;quot;some value/thing/whatever&amp;quot;&lt;/span&gt;)
&lt;span class="kwd"&gt;End Function&lt;/span&gt; &lt;/pre&gt;&amp;nbsp;&lt;br /&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3150665.aspx</link><pubDate>Fri, 08 May 2009 13:03:21 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3150665</guid><dc:creator>Mr^B</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3150665.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3150665</wfw:commentRss><description>You can&amp;#39;t. You should re-write the function.&lt;br /&gt;</description></item><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3150204.aspx</link><pubDate>Fri, 08 May 2009 09:39:03 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3150204</guid><dc:creator>ezhillmaran</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3150204.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3150204</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;say for example this is the function rewritten in asp file.. i want to invoke this function from asp.net &lt;/p&gt;&lt;p&gt;Function getData(ByVal Id)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; Set getData= &amp;quot;retVal&amp;quot;&lt;br /&gt;End Function &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3150123.aspx</link><pubDate>Fri, 08 May 2009 09:00:27 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3150123</guid><dc:creator>Kulrom</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3150123.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3150123</wfw:commentRss><description>&lt;p&gt;Ok you can also invoke the file from asp.net, using httpRequest/Response methods.&lt;/p&gt;&lt;p&gt;However i am not very sure whether you can interact the VBScript code directly (e.g. if you want to 1st invoke the vbscript func. and then get the returning value). &lt;/p&gt;&lt;p&gt;Could you post the asp function or explain what it does. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3150032.aspx</link><pubDate>Fri, 08 May 2009 08:18:46 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3150032</guid><dc:creator>ezhillmaran</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3150032.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3150032</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;I know this could be rewritten in asp.net function. but this is shared file. something like bridget to many application. Other applications done in asp also invoking this file...&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Call function to asp file</title><link>http://forums.asp.net/thread/3150009.aspx</link><pubDate>Fri, 08 May 2009 08:09:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3150009</guid><dc:creator>Kulrom</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3150009.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3150009</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;I would rather rewrite the function in .NET&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Call function to asp file</title><link>http://forums.asp.net/thread/3149882.aspx</link><pubDate>Fri, 08 May 2009 07:03:28 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:3149882</guid><dc:creator>ezhillmaran</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/3149882.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=29&amp;PostID=3149882</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;Hi to all,&lt;/p&gt;&lt;p&gt;&amp;nbsp; I have some functions written in asp file. I need to call those function from asp.net.&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item></channel></rss>