$
$DG$
Unregistered / Unconfirmed
GUEST, unregistred user!
ASP:
<% Set DelphiASPObj = Server.CreateObject("connstr.conn"
response.write(application("str")
DelphiASPObj.outstr(str)
%>
DELPHI:
procedure Tconn.outstr(out str: WideString);
begin
response.write('1112');
application.Set_Value('str','123');
str:='123456';
end;
前两行传出来了,最后那个没出来,就是STR='123456'这个,请问要怎样做?
<% Set DelphiASPObj = Server.CreateObject("connstr.conn"
response.write(application("str")
DelphiASPObj.outstr(str)
%>
DELPHI:
procedure Tconn.outstr(out str: WideString);
begin
response.write('1112');
application.Set_Value('str','123');
str:='123456';
end;
前两行传出来了,最后那个没出来,就是STR='123456'这个,请问要怎样做?