Click here to Skip to main content
15,891,902 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi
i read serial port in windows form with this code :

C#
serialPort1.Open();
                serialPort1.DataReceived += new SerialDataReceivedEventHandler(serialPort1_DataReceived);
private void DisplayText(object sender, EventArgs e)
        {
            enterCardNo_txtBox.AppendText(DispString.ToString());
        }
        private void serialPort1_DataReceived(object sender, System.IO.Ports.SerialDataReceivedEventArgs e)
        {
            DispString = serialPort1.ReadExisting();

            Invoke(new EventHandler(DisplayText));
        }


NOW
i want to read serial port in ASP.Net Mvc2

but "Invoke" method is Unknown mvc2

What is the equivalent of invoke in mvc ???
Posted
Comments
ZurdoDev 13-Jul-13 22:14pm    
Perhaps you can explain better. Web code runs on a server and so the only serial port you'll be able to access with web code is the server's serial port. Is that what you want?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900