C#.net 12月11日前帮我解决送100分 用户注册 远程图像管理 远程数据查询 谁能帮我解决

问题描述

代码都写了,没有提示代码错误,却实现不了功能。下面是我写的代码和要求谁能在11号前帮我解决我把所有分都送给他1、用户注册客户端程序采用B/S结构,程序要求:l客户端程序是一个login.htm的注册网页,包含名称为user的用户文本框与名称是pass的密码框,在输入用户名光标离开user框时,即刻可以显示该用户名称是否可以使用。并且在用户名称与密码都不为空时才可以提交。l服务器端实现用户的注册,把新用户写入数据库,并实现用户名称是否可以使用的查询。<html><head><title></title></head><body><scriptlanguage="JavaScript">functioncheck(){varu=frm.user.value;//if(u=="")frm.user.focus();else{//提交u给服务器http://localhost/ajax/default.aspxvarhttp=newActiveXObject("Microsoft.XMLHTTP");varurl="http://localhost/ajax/default.aspx?user="+u;http.open("get",url,false);http.send(null);vars=http.responseText;if(s!=""){alert(s);frm.user.focus();}}}</script><center><formname="frm"><h1>用户注册</h1>名称<inputtype="text"name="user"onblur="check()"><br>密码<inputtype="password"name="pass"><br><inputtype="submit"value="注册"></form></center></body></html>服务器端程序usingSystem;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;publicpartialclass_Default:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){String[]st=newString[]{"张三","李四","王五","Bob","Tom","Smith","Marry","Jerry"};//从网页中获取输入姓名Stringuser=Request.QueryString["user"];if(user!=null&&user!=""){for(inti=0;i<st.Length;i++){if(String.Compare(st[i],user,true)==0){Response.Write(user+"已经被别人使用!");return;}}}}}2、远程图像管理程序要求:l服务器端采用asp.net设计服务程序,实现对该程序目录下的图像进行管理l客户端采用Windows程序,并采用HTTP协议与服务器建立通讯,连接服务器后能显示出所有的图像,并能实现图像的下载与上传。ClientusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.IO;namespaceImageClient{publicpartialclassForm1:Form{MSXML2.XMLHTTPhttp;publicForm1(){InitializeComponent();}privatevoidForm1_Load(objectsender,EventArgse){http=newMSXML2.XMLHTTP();textBox1.Text="http://localhost/ImageServer.aspx";}privatevoidbutton4_Click(objectsender,EventArgse){//connectStringurl=textBox1.Text+"?op=list";http.open("get",url,false,null,null);http.send(null);Strings=http.responseText;String[]fn=s.Split(newchar[]{'n'},StringSplitOptions.RemoveEmptyEntries);for(inti=0;i<fn.Length;i++)listBox1.Items.Add(fn[i]);button4.Enabled=false;}privatevoidbutton2_Click(objectsender,EventArgse){//downloadif(listBox1.SelectedIndex>=0){Stringfn=listBox1.Items[listBox1.SelectedIndex].ToString();Stringurl=textBox1.Text+"?op=download&fn="+fn;http.open("get",url,false,null,null);http.send(null);byte[]buf=(byte[])http.responseBody;MemoryStreamms=newMemoryStream(buf);pictureBox1.Image=Image.FromStream(ms);}}privatevoidbutton1_Click(objectsender,EventArgse){//uploadopenFileDialog1.Filter="jpg|*.jpg";if(openFileDialog1.ShowDialog()==DialogResult.OK){Stringfn=openFileDialog1.FileName;FileStreamfs=newFileStream(fn,FileMode.Open);byte[]buf=newbyte[fs.Length];fs.Read(buf,0,buf.Length);fs.Close();intp=fn.LastIndexOf("\");if(p>=0)fn.Substring(p+1);Stringurl=textBox1.Text+"?op=upload&fn="+fn;http.open("post",url,false,null,null);http.send(buf);Strings=http.responseText;if(s=="OK"){listBox1.Items.Add(fn);}}}}}ServerusingSystem;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;usingSystem.IO;publicpartialclassImageServer:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){Stringop=Request.QueryString["op"];if(op==null)op="";Stringdir=Server.MapPath("");if(!dir.EndsWith("\"))dir=dir+"\";if(op=="list"){String[]fn=Directory.GetFiles(dir,"*.jpg");Strings="";for(inti=0;i<fn.Length;i++){s=s+fn[i].Substring(dir.Length)+"n";}Response.Write(s);}elseif(op=="download"){Stringfn=Request.QueryString["fn"];if(File.Exists(dir+fn)){Response.WriteFile(dir+fn);}}elseif(op=="upload"){Stringfn=Request.QueryString["fn"];Request.SaveAs(dir+fn,false);Response.Write("OK");}}}

解决方案

解决方案二:
3、远程数据查询程序要求:l建立Access数据库与students表格,包含学生学号(sno)、姓名(sname)、班级(sclass)字段。l服务器端采用asp.net设计服务程序,实现数据库的查询l客户端采用Windows程序,并采用HTTP协议与服务器建立通讯,实现对学生数据库按学号、姓名、班级进行查询。ClientusingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.IO;namespacestudentClient{publicpartialclassForm1:Form{MSXML2.XMLHTTPhttp;publicForm1(){InitializeComponent();}privatevoidForm1_Load(objectsender,EventArgse){comboBox1.Items.Add("学号");comboBox1.Items.Add("姓名");comboBox1.Items.Add("班级");comboBox1.SelectedIndex=0;comboBox2.Items.Add("相等于");comboBox2.Items.Add("类似于");comboBox2.SelectedIndex=0;http=newMSXML2.XMLHTTP();}privatevoidbutton1_Click(objectsender,EventArgse){Stringsql="select*fromstudentsorderbysno";if(textBox1.Text!=""){sql="select*fromstudentswhere";if(comboBox1.Text=="学号")sql=sql+"sno";elseif(comboBox1.Text=="姓名")sql=sql+"sname";elseif(comboBox1.Text=="班级")sql=sql+"sclass";if(comboBox2.Text=="相等于")sql=sql+"=";elsesql=sql+"like";sql=sql+"'"+textBox1.Text+"'";}http.open("get",textBox2.Text+"?sql="+sql,false,null,null);http.send(null);byte[]buf=(byte[])http.responseBody;MemoryStreamms=newMemoryStream(buf);DataTabledt=newDataTable();dt.ReadXml(ms);dataGridView1.DataSource=dt;}}}ServerusingSystem;usingSystem.Collections;usingSystem.Configuration;usingSystem.Data;usingSystem.Linq;usingSystem.Web;usingSystem.Web.Security;usingSystem.Web.UI;usingSystem.Web.UI.HtmlControls;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.WebControls.WebParts;usingSystem.Xml.Linq;usingSystem.IO;usingSystem.Data.OleDb;publicpartialclassstudentserver:System.Web.UI.Page{protectedvoidPage_Load(objectsender,EventArgse){try{Stringsql=Request.QueryString["sql"];if(sql==null||sql=="")return;//Stringsql="select*fromstudents";OleDbConnectioncon=newOleDbConnection();Strings=Server.MapPath("");if(!s.EndsWith("\"))s=s+"\";con.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource="+s+"students.mdb";con.Open();OleDbDataAdapterada=newOleDbDataAdapter(sql,con);DataTabledt=newDataTable("DT");ada.Fill(dt);MemoryStreamms=newMemoryStream();dt.WriteXml(ms,XmlWriteMode.WriteSchema);byte[]buf=ms.ToArray();Response.BinaryWrite(buf);con.Close();}catch(Exceptionexp){Response.Write(exp.Message);}}}
解决方案三:
完成后请发送到我的邮箱809899396@163.com谢谢各位
解决方案四:
楼主你这是干嘛啊???谁的事件都很宝贵…………知道不?

时间: 2024-09-12 17:10:37

C#.net 12月11日前帮我解决送100分 用户注册 远程图像管理 远程数据查询 谁能帮我解决的相关文章

日本或于12月11日推双屏笔记本(图)

11月30日消息,消息人士透露,日本超便携笔记本电脑厂商工人舍(Kohjinsha)将于12月11日前后在日本市场上推出一款价格为7.98万日元(约合900美元)的双屏笔记本电脑. 据国外媒体报道称,尽管这并非全球首款笔记本电脑,但却是全球首款配置10.1英寸显示屏的双屏笔记本电脑.另外,其在价格和对称性方面也超过联想的Thinkpad W700d系列. 工人舍这款双屏笔记本电脑配置为: ·两块分辨率为1024x600的10.1英寸显示屏. ·AMD速龙Neo MV-40处理器(1.6GHz).

作协发维权通告:要求谷歌12月31日前交方案

11月19日消息,中国作家协会(以下简称"作协")昨晚针对谷歌图书侵权事件发出通告,要求谷歌对未经授权扫描收录使用中国作家的图书作品,须在2009年12月31日前向中国作家协会提交处理方案并尽快办理赔偿事宜. 作协在通告中还表示,谷歌还须在一个月内(即2009年12月17日前)向中国作家协会提供已经扫描收录使用的中国作家作品清单,并不得再以任何形式扫描收录使用中国作家作品. 以下为通告全文: 一段时期以来,谷歌公司未经授权扫描收录使用中国作家的图书作品,中国文字著作权协会就此与谷歌公司

一嗨租车12月11日发布第三财季财报

摘要: 查看最新行情 北京时间12月4日晚间消息,一嗨租车(NYSE: EHIC )今日宣布,将于2014年12月11日美国股市开盘前(北京时间12月11日晚)发布截至9月30日2014财年第三季度财报. 财报发布后,一嗨   查看最新行情 北京时间12月4日晚间消息,一嗨租车(NYSE: EHIC )今日宣布,将于2014年12月11日美国股市开盘前(北京时间12月11日晚)发布截至9月30日2014财年第三季度财报. 财报发布后,一嗨租车管理层将于美国东部时间12月11日上午8点(北京时间1

汽车之家将在12月11日在美挂牌上市

摘要: 美国财经网站IPOScoop.com的信息显示,汽车之家将于美国东部时间12月11日(北京时间12月11日晚)在美挂牌上市 12月3日上午消息,美国财经网站IPOScoop.com的信息显示, 汽车之家 (NYSE: ATHM )将 美国财经网站IPOScoop.com的信息显示,汽车之家将于美国东部时间12月11日(北京时间12月11日晚)在美挂牌上市 12月3日上午消息,美国财经网站IPOScoop.com的信息显示,汽车之家(NYSE: ATHM )将于美国东部时间12月11日(北

消息称陌陌上市时间提前至12月11日

[摘要]陌陌将于美国东部时间12月11日在 纳斯达克交易所挂牌上市.陌陌 腾讯科技讯,12月8日,消息人士透露,陌陌IPO时间定于12月11日(周四),早于此前公开披露的12月12日.腾讯科技从接近陌陌的消息人士处获悉,陌陌将于美国东部时间12月11日在纳斯达克交易所挂牌上市,交易代码为"MOMO",发行价12.50至14.50美元,按中间值计算, 预计陌陌将从本次IPO中融资2.566亿美元.陌陌实行双层股票结构,即将在纳斯达克交易所上市. 新的招股书中称,,陌陌联合创始人.董事长.

《陌陌劲舞团》12月11日正式上线

经过了四个月的内测,由移动社交应用陌陌联合久游网推出的3D音舞类手机游戏<陌陌劲舞团>在12月11日正式上线,iOS和Android平台同时发布.<陌陌劲舞团>是一款集音乐.社交.养成于一体的3D音舞类休闲游戏.玩家不仅能体验到丰富多彩的音舞游戏乐趣,更有海量服饰随意搭配,打造时尚游戏造型.而找好友.组队伍.拍照分享.排行竞技等新颖的社交养成玩法,为玩家提供了多维度的社交方式.无论是竞技还是好友雇佣,都能使玩家领略到社交娱乐的乐趣,让音乐游戏不再孤独与单调.此次久游网为陌陌量身打造

陌陌上市时间提前:12月11日挂牌纳斯达克

DoNews 12月8日消息(记者 余维维)据消息人士透露,陌陌将于美国东部时间12月11日(周四)在纳斯达克交易所挂牌上市,早于此前公开披露的12月12日. 陌陌于11月8日向美国证券交易委员会提交招股书,启动赴美上市.11月底,陌陌确定交易代码为"MOMO",发行价12.50至14.50美元,计划公开发行1600万股美国存托股(ADS).以发行价上限14.5美元计算,陌陌本次IPO最高融资2.32亿美元. 陌陌还在IPO中授予承销商240万股ADS的超额配售权.如果承销商完全行使超

网易将于12月11日公测《天下贰》新资料片

12月2日消息,网易3D网游<天下贰>首部新资料片<飞龙在天>将于12月11日正式公测,这距离<天下贰>9月20日正式公测还不到三个月的时间.此前,丁磊曾公开表示网易对这款游戏报以很大希望. 据透露,早在<天下贰>公测之前,其首部资料片<飞龙在天>的研发工作已经启动.经过半年的准备,网易方面认为这款资料片的各方面系统都已相对成熟,计划于12月11日正式启动公测. <天下贰>于今年9月20日正式公测,在网易上一财季的电话会议上,丁磊表示

爱奇艺会员2015年12月11日账号共享实时更新

爱奇艺会员2015年12月11日账号共享实时更新 更新时间00:30 账号15084421542密码sk123456 账号13049723644密码sk123456 账号13039674452密码sk123456 账号lixinbo23  密码:281609861 账号13518146457  密码:jojowang 账号13543297621密码ux050340 账号13234588847密码ao864582 账号sallywelly密码5143774 账号adyclove3s密码yiran1