Клиент-сервер: обмен данными Лабораторная работа 4
Свойства объекта document document.all.length;document.all.length; document.title;document.title; document.bgColor;document.bgColor; document.fileCreatedDate;document.fileCreatedDate; document.lastModified;document.lastModified; document.fileUpdateDate;document.fileUpdateDate; document.readyState;document.readyState;
Свойства объекта location document.location.search; //getdocument.location.search; //get document.location.protocol;document.location.protocol; document.location.port;document.location.port; document.location.hash;document.location.hash; document.location.host;document.location.host; document.location.hostname;document.location.hostname; document.location.href;document.location.href; document.location.pathname;document.location.pathname;
Свойства объекта navigator window.navigator.appName;window.navigator.appName; navigator.appVersion;navigator.appVersion; navigator.appCodeName;navigator.appCodeName; navigator.platform;navigator.platform; navigator.userAgent;navigator.userAgent; navigator.cookieEnabled;navigator.cookieEnabled; navigator.browserLanguage;navigator.browserLanguage; navigator.cpuClass;navigator.cpuClass; navigator.onLine;navigator.onLine; navigator.systemLanguage;navigator.systemLanguage; navigator.userLanguage;navigator.userLanguage; navigator.userProfile;navigator.userProfile;
Пример передачи данных от клиента серверу Передача данных Передача данных var v1,v2; var v1,v2; v1=document.all.length; v1=document.all.length; v2=document.fileCreatedDate; v2=document.fileCreatedDate; document.write("Число элементов в документе="+v1); document.write("Число элементов в документе="+v1); document.write(" Дата создания документа="+v2); document.write(" Дата создания документа="+v2);
document.write("
Файл WebForm1.aspx private void Page_Load(object sender, System.EventArgs e) { //данные сервера this.Response.Write(this.Request.HttpMethod);this.Response.Write(this.Request.QueryString); this.Response.Write(this.Request.ContentLength +" "); this.Response.Write(this.Request.Url+" "); this.Response.Write(this.Request.Url+" "); this.Response.Write(this.Request.UserAgent+" ");
//данные клиента this.Response.Write("par="+this.Request.Params["t1"]+"");this.Response.Write("par="+ this.Request.Params["t2"]+" "); }
Пример 2. Файл c1.htm function send() { document.forms[0].action = " document.forms[0].docdate.value= window.document.fileCreatedDate; window.document.fileCreatedDate; document.forms[0].brousname.value=window.navigator.a ppName; document.forms[0].brousver.value=window.navigator.app Version; document.forms[0].submit();}
Файл sr.php