<?xml version="1.0" encoding="iso-8859-9" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwizguide.com/rss_namespace/">
 <channel>
  <title>Datakent Forum : Asp Open</title>
  <link>http://forum.datakent.com/</link>
  <description>XML içerik linki; Datakent Forum : Borland Delphi : Asp Open</description>
  <pubDate>Thu, 30 Apr 2026 14:09:26 +0000</pubDate>
  <lastBuildDate>Wed, 12 Nov 2008 09:36:17 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.54</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.datakent.com/RSS_post_feed.asp?TID=1578</WebWizForums:feedURL>
  <image>
   <title>Datakent Forum</title>
   <url>http://forum.datakent.com/forum_images/datakent.com_forums.png</url>
   <link>http://forum.datakent.com/</link>
  </image>
  <item>
   <title>Asp Open : Hocam Kodlar&#305;n&#305;z&#305; Takip ediyom.Malum...</title>
   <link>http://forum.datakent.com/forum_posts.asp?TID=1578&amp;PID=3377#3377</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://forum.datakent.com/member_profile.asp?PF=3122" rel="nofollow">turknetyazilim</a><br /><strong>Konu:</strong> 1578<br /><strong>Gönderim Zamanı:</strong> 12.Kasim.2008 Saat 09:36<br /><br />Hocam Kodlarınızı Takip ediyom.Malum KodBanktan...]]>
   </description>
   <pubDate>Wed, 12 Nov 2008 09:36:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.datakent.com/forum_posts.asp?TID=1578&amp;PID=3377#3377</guid>
  </item> 
  <item>
   <title>Asp Open : bunu nereden buldun ismail :) </title>
   <link>http://forum.datakent.com/forum_posts.asp?TID=1578&amp;PID=3373#3373</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://forum.datakent.com/member_profile.asp?PF=1" rel="nofollow">murat turan</a><br /><strong>Konu:</strong> 1578<br /><strong>Gönderim Zamanı:</strong> 11.Kasim.2008 Saat 21:05<br /><br />bunu nereden buldun ismail :)]]>
   </description>
   <pubDate>Tue, 11 Nov 2008 21:05:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.datakent.com/forum_posts.asp?TID=1578&amp;PID=3373#3373</guid>
  </item> 
  <item>
   <title>Asp Open : {Murat Turan ASP &#231;al&#305;&#351;t&#305;rma hep...</title>
   <link>http://forum.datakent.com/forum_posts.asp?TID=1578&amp;PID=3369#3369</link>
   <description>
    <![CDATA[<strong>Yazar:</strong> <a href="http://forum.datakent.com/member_profile.asp?PF=3122" rel="nofollow">turknetyazilim</a><br /><strong>Konu:</strong> 1578<br /><strong>Gönderim Zamanı:</strong> 11.Kasim.2008 Saat 16:16<br /><br /><P>{<BR>Murat Turan</P><P>ASP çalıştırma hep benim açımdan problem olmuştur.<BR>ASP çalıştıracağım zaman explorer'i açık <a href="http://localhost/dizin/xxx.asp" target="_blank">http://localhost/dizin/xxx.asp</A><BR>veya <a href="http://makineadi/dizin/xxx.asp" target="_blank">http://makineadi/dizin/xxx.asp</A> yazıp asp dosyalarını çalıştırmak<BR>zorunda kalmışımdır. sanırım başada yol yokdur. Bu iş beni herzaman sıkmıştır.<BR>Bende bir programcı olarak bu işe bir et atmam ve bu işe bir pratiklik<BR>kazandırmam gerek dedim ve aşağıdaki programı yaptım. ASP ile çalışanların<BR>sanırım işine yarayacaktır. :)</P><P>Yapmanız gereken aşağıdaki kodu forma eklemek ve programım exe sini<BR>herhangi biryere atıp birkereye mahsus çalıştırmaktır.<BR>Daha sonra ASP dosyalarına sağ tıkladığınızda ASP.Open komutu görülecektir.<BR>Buna tıkladığınızda asp dosyası yorumlanmış olarak karşınıza gelecektir.</P><P>Kolay gelsin.<BR>}</P><P><BR>Uses registry, Filectrl;</P><P>{$R *.dfm}</P><P><strong>procedure Tana.FormCreate(Sender: TObject);<BR>var</strong><BR>&nbsp;REG:TREGISTRY;<BR><strong>begin</strong><BR>&nbsp;REG := TRegistry.Create;<BR><strong>&nbsp;TRY</strong><BR>&nbsp;REG.RootKey := HKEY_CLASSES_ROOT;<BR><strong>&nbsp;if</strong> Reg.OpenKey('\aspfile\shell\ASP.Open\Command', True) <strong>then</strong><BR><strong>&nbsp;begin</strong><BR>&nbsp;&nbsp; Reg.WriteString('','"' + Application.ExeName + '"' + ' %1');<BR>&nbsp;&nbsp; Reg.CloseKey;<BR>&nbsp;&nbsp;&nbsp; end;<BR>&nbsp; <strong>finally</strong><BR>&nbsp;&nbsp;&nbsp; Reg.Free;<BR>&nbsp;&nbsp;&nbsp; inherited;<BR>&nbsp; <strong>end;</strong><BR><strong>end;</strong></P><P><strong>procedure Tana.FormShow(Sender: TObject);<BR>var</strong><BR>&nbsp;i:string;<BR>&nbsp;sadecead:string;<BR>&nbsp;nerde:integer;<BR><strong>begin</strong><BR>&nbsp;i := ParamStr(1);<BR>&nbsp;nerde := Pos('wwwroot',i);<BR>&nbsp;sadecead :=&nbsp; 'http://localhost/' + Copy(i,nerde+8,length(i) );<BR>&nbsp;WinExec(pchar('Explorer.exe '+sadecead),sw_normal);<BR><strong>end;</strong></P><P><strong>procedure Tana.FormPaint(Sender: TObject);<BR>begin</strong><BR>&nbsp;Close;<BR><strong>end;</strong></P>]]>
   </description>
   <pubDate>Tue, 11 Nov 2008 16:16:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.datakent.com/forum_posts.asp?TID=1578&amp;PID=3369#3369</guid>
  </item> 
 </channel>
</rss>