Writing text to the serial port (C#) : Serial Port « Development « ASP.NET Tutorial






<%@ Page Language="C#" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<script runat="server">

System.IO.Ports.SerialPort SerialPort1 = new System.IO.Ports.SerialPort();
    
protected void  Page_Load(object sender, EventArgs e)
{
    this.SerialPort1.PortName = "COM1";

    if (!this.SerialPort1.IsOpen)
    {
        this.SerialPort1.Open();
    }

    this.SerialPort1.Write("Hello World");
    this.SerialPort1.Close();
}
</script>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        &nbsp;</div>
    </form>
</body>
</html>








9.38.Serial Port
9.38.1.Writing text to the serial port (C#)
9.38.2.Writing text to the serial port (VB)