using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace GMW_RT { public partial class MBC : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { // se ho un messaggio (mittente, messaggio) lo invio... string mittente = Request.QueryString["mittente"]; string messaggio = Request.QueryString["messaggio"]; if (mittente != "" && messaggio != "") { Broad.cast.sendMess(mittente, messaggio); } string txt01 = Request.QueryString["txt01"]; string txt02 = Request.QueryString["txt02"]; string txt03 = Request.QueryString["txt03"]; string txt04 = Request.QueryString["txt04"]; string txt05 = Request.QueryString["txt05"]; string txt06 = Request.QueryString["txt06"]; string css1 = Request.QueryString["css1"]; string css2 = Request.QueryString["css2"]; string css3 = Request.QueryString["css3"]; if (txt01 != "" || txt02 != "" || txt03 != "" || txt04 != "" || txt05 != "" || txt06 != "" || css1 != "" || css2 != "" || css3 != "") { Broad.cast.updateTablet(txt01, txt02, txt03, txt04, txt05, txt06, css1, css2, css3); } } } }