主题:请求高手帮忙
我写了一个C#的组件,希望他能够在ASP下调用,例如
Set send = Server.CreateObject("XXX")
send.MailBody = "XXX"
Response.Write send.MailBody
这种方法调用,为什么写好后,使用Csc注册,但并不能正常调用呢?
已经用regsvr32注册过了。
代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace Test
{
[ClassInterfaceAttribute(ClassInterfaceType.AutoDual)]
public class TestMail
{
private string str;
public TestMail()
{
}
public string MailBody
{
get
{
return str;
}
set
{
str = value;
}
}
}
}
高手帮忙看看撒~~
Set send = Server.CreateObject("XXX")
send.MailBody = "XXX"
Response.Write send.MailBody
这种方法调用,为什么写好后,使用Csc注册,但并不能正常调用呢?
已经用regsvr32注册过了。
代码如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace Test
{
[ClassInterfaceAttribute(ClassInterfaceType.AutoDual)]
public class TestMail
{
private string str;
public TestMail()
{
}
public string MailBody
{
get
{
return str;
}
set
{
str = value;
}
}
}
}
高手帮忙看看撒~~