我编写了以下内容,使用C#
在Windows应用程序中广播数据 UdpClient server = new UdpClient("127.0.0.1", 9050);
string welcome = "Hello, are you there?";
data = Encoding.ASCII.GetBytes(welcome);
server.Send(data, data.Length);
但是,如何使用javascript或asp.net通过Web应用程序读取相同的数据?