本文介绍了在可视化Web开发人员中使用外部DLL来控制com1的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在visual C#2008中有这个dll!

使用System;
使用System.collection.generic;
使用System.linq;
使用System。 text;
使用System.io.port;
使用System.threading;

命名空间compuerto
{
   公共类class1
     {  static serialport rs232
          public class1()
             {rs232 = new serialport();
                rs232.portname =" COM1"                rs232.baudrate = 57600;
                rs232.databit = 8;
                rs232.writetimeout = 500;
                rs232.open();
}
}左右,我需要在我的网页中使用这个dll,这是我在Visual Web developer 2008中制作的!,  ;我有 在  PC  visual C#2008,  web developer 2008和  i。7。我不知道如何使用这个dll并获得许可,请知道如何知道如何???????? /⑥

i have this dll in visual C# 2008!

using System;
using System.collection.generic;
using System.linq;
using System.text;
using System.io.port;
using System.threading;

namespace compuerto
{
    public class class1
     {  static serialport rs232
          public class1()
             { rs232 = new serialport();
                rs232.portname = "COM1"
                rs232.baudrate = 57600;
                rs232.databit =8;
                rs232.writetimeout = 500;
                rs232.open();
}
}
}

and i need use this dll in my web page that i made in visual web developer 2008!,  i have  in  pc  visual C# 2008,  web developer 2008 and  iis 7.

i don't know how to use this dll and get a permission, please somebody the know how to????????














推荐答案


这篇关于在可视化Web开发人员中使用外部DLL来控制com1的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 00:49