编写组件封装asp代码

      DELPHI 2005-9-1 12:53
1.文件->新建->其他->ActiveX->ActiveX Library,然后保存成showdll.dpr

2.再次,文件->新建->其他->ActiveX->ActiveX Server Object,填写CoClassName:showhello,其他不变,点击ok。

3.现在开始写程序,先添加一个方法。选择Ishowhello->右键->New->Method,填写方法名称:sayworld。


4.现在开始写程序,将Unit1保存成show.pas,然后添加方法sayworld的代码


show.pas的全部代码如下:

unit show;

{$WARN SYMBOL_PLATFORM OFF}

interface

uses

ComObj, ActiveX, AspTlb, showdll_TLB, StdVcl;

type

Tshowhello = class(TASPObject, Ishowhello)

protected

procedure OnEndPage; safecall;

procedure OnStartPage(const AScriptingContext: IUnknown); safecall;

procedure sayworld; safecall; //sayworld方法

end;



implementation

uses ComServ;

procedure Tshowhello.OnEndPage;

begin

inherited OnEndPage;

end;

procedure Tshowhello.OnStartPage(const AScriptingContext: IUnknown);

begin

inherited OnStartPage(AScriptingContext);

end;

procedure Tshowhello.sayworld(); //定义sayworld方法

begin

response.Write('Hello world'); //里边的语法和asp一样的写法了,就在这里封装了。

end;

initialization

TAutoObjectFactory.Create(ComServer, Tshowhello, Class_showhello,

ciMultiInstance, tmApartment);

end.

4.点击运行,编译成dll, 并自动注册了。

让你放到web服务器上运行,好了现在写个asp文件调用一下吧,注意Delphi已经生成了一个asp文件,我们改一下调用的方法就可以了。

修改后的showhello.asp代码如下:

<HTML>

<BODY>

<TITLE> Testing Delphi ASP </TITLE>

<CENTER>

<H3> You should see the results of your Delphi Active Server method below </H3>

</CENTER>

<HR>

<% Set DelphiASPObj = Server.CreateObject("showdll.showhello")

DelphiASPObj.sayworld

%>

<HR>

</BODY>

</HTML>

标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commenttime}{commentauthor}

{CommentUrl}
{commentcontent}