我正在做一个项目,使用 asp.net 向连接到我的计算机的移动设备发送短信。我不会问怎么做。我希望有人帮我找到我的 COM 端口号
我试过 1. 设备管理器 > 端口(com&lpt)问题:设备管理器的列表中没有端口(COM&LPT)。
我以编程方式尝试我得到了这个代码
imports System.IO.Ports Private Shared Sub SendSampleData() ' Instantiate the communications ' port with some basic settings Dim port As New SerialPort("COM1", 9600, Parity.None, 8, StopBits.One) ' Open the port for communications port.Open() ' Write a string port.Write("Hello World") ' Write a set of bytes port.Write(New Byte() {&Ha, &He2, &Hff}, 0, 3) ' Close the port port.Close() End Sub
坦率地说,我不知道如何在其中输入电话号码。
some1可以帮助我实现我的目标吗?