示例#1
0
        public void ProcessRequest(HttpContext context)
        {
            PlayerConnection.Initialize();
            string cmd = context.Request.QueryString["cmd"];

            PlayerConnection.PushCommand(cmd);
        }
示例#2
0
 protected void TextBox2_TextChanged(object sender, EventArgs e)
 {
     PlayerConnection.PushCommand(TextBoxInput.Text);
     PlayerConnection._sb.AppendLine(TextBoxInput.Text);
     TextBoxInput.Text = string.Empty;
 }