版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
河南中医学院《ASP.NET课程设计报告》所在院系:信息技术学院专业年级:级计算机科学与技术完毕学生:180106曽涛指引教师:曹莉ASP.NET课程设计报告-新闻网站目录HYPERLINK+message+"')</script>",false);}publicstaticvoidAlert(stringmessage,Pagepage)//显示对话框{page.Response.Write("<scriptlanguage='javascript'type='text/javascript'>functionwindow.onload(){alert('"+message+"');}</script>");}publicstaticvoidMsgBox(stringmessage,Pagepage)//显示对话框{Stringcsname="PopupScript";//定义客户端脚本名Typecstype=page.GetType();//定义客户端脚本类型ClientScriptManagercs=page.ClientScript;//创立一种ClientScriptManager类if(!cs.IsStartupScriptRegistered(cstype,csname))//如果脚本没有注册{Stringcstext="alert('"+page.Server.HtmlEncode(message)+"');";cs.RegisterStartupScript(cstype,csname,cstext,true);}}publicstaticvoidMsgBox(stringmessage,stringurl,Pagepage){ClientScriptManagercs=page.ClientScript;//创立一种ClientScriptManager类Stringcsname="PopupScript";//定义客户端脚本名Typecstype=page.GetType();//定义客户端脚本类型if(!cs.IsStartupScriptRegistered(cstype,csname))//如果脚本没有注册{Stringcstext="alert('"+page.Server.HtmlEncode(message)+"');window.location='"+url+"';";cs.RegisterStartupScript(cstype,csname,cstext,true);}}publicvoidAlertBox(stringmessage,stringurl){System.Web.HttpContext.Current.Response.Write("<script>alert('"+message+"');location.href('"+url+"')</script>");}publicstaticvoidCClose(Pagepage){//GetaClientScriptManagerreferencefromthePageclassClientScriptManagercs=page.ClientScript;//DefinethenameandTypeoftheclientscriptonthepageStringcsname="close";Typecstype=page.GetType();//builderthescripttextStringBuildercstext=newStringBuilder();cstext.Append("<scriptlanguage='javascript'>");cstext.Append("{window.opener='anyone';window.close();}");cstext.Append("</script>");//Checktoseeifthestartupscriptisalreadyregisteredif(!cs.IsClientScriptBlockRegistered(cstype,csname)){cs.RegisterStartupScript(cstype,csname,cstext.ToString());}}//或inti=SqlHelper.GetExecuteNonQuery(sqlStr);publicstaticintGetExecuteNonQuery(stringsqlStr){OpenConnection();//打开连接cmd.CommandType=CommandType.Text;//定义为使用SQL语句cmd.CommandText=sqlStr;//初始化Command对象SQL字符串intresult=cmd.ExecuteNonQuery();//执行SQL语句并返回受影响行数CloseConnection();//关闭连接returnresult;//返回整数}publicstaticintGetExecuteNonQuery(stringsqlStr,paramsSqlParameter[]values){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;cmd.Parameters.AddRange(values);//添加参数集intresult=cmd.ExecuteNonQuery();CloseConnection();cmd.Parameters.Clear();returnresult;}publicstaticobjectGetExecuteScalar(stringsqlStr){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;objectresult=cmd.ExecuteScalar();//执行SQL语句CloseConnection();returnresult;//返回获得单个值}publicstaticobjectGetExecuteScalar(stringsqlStr,paramsSqlParameter[]values){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;cmd.Parameters.Clear();cmd.Parameters.AddRange(values);objectresult=cmd.ExecuteScalar();CloseConnection();cmd.Parameters.Clear();returnresult;}publicstaticSqlDataReaderGetExecuteReader(stringsqlStr){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;SqlDataReaderreader=cmd.ExecuteReader();//这里不能关闭连接CloseConnection(),要在调用中关闭returnreader;}publicstaticSqlDataReaderGetDataReader(stringsqlStr,paramsSqlParameter[]values){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;cmd.Parameters.AddRange(values);SqlDataReaderreader=cmd.ExecuteReader();//这里不能关闭连接CloseConnection(),要在调用中关闭cmd.Parameters.Clear();returnreader;}publicstaticDataSetGetDataSet(stringsqlStr){SqlDataAdapterda=newSqlDataAdapter();OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;da.SelectCommand=cmd;DataSetds=newDataSet();da.Fill(ds);CloseConnection();returnds;//返回DataSet对象}publicstaticDataSetGetDataSet(stringsqlStr,paramsSqlParameter[]values){SqlDataAdapterda=newSqlDataAdapter();OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;cmd.Parameters.AddRange(values);da.SelectCommand=cmd;DataSetds=newDataSet();da.Fill(ds);CloseConnection();cmd.Parameters.Clear();returnds;//返回DataSet对象}publicstaticDataSetGetDataSet(stringsqlStr,stringtableName){SqlDataAdapterda=newSqlDataAdapter();OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;da.SelectCommand=cmd;DataSetds=newDataSet();da.Fill(ds,tableName);CloseConnection();returnds;//返回DataSet对象}publicstaticDataTableGetDataTable(StringsqlStr){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;DataTabledt=newDataTable();//创立一种数据表dtSqlDataAdapterda=newSqlDataAdapter(cmd);//定义并初始化数据适配器da.Fill(dt);//将数据适配器中数据填充到数据集dt中CloseConnection();returndt;}publicstaticDataTableGetDataTable(stringsqlStr,paramsSqlParameter[]values){OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;cmd.Parameters.AddRange(values);DataSetds=newDataSet();SqlDataAdapterda=newSqlDataAdapter(cmd);da.Fill(ds);CloseConnection();cmd.Parameters.Clear();returnds.Tables[0];}publicstaticDataViewGetDataView(stringsqlStr){SqlDataAdapterda=newSqlDataAdapter();DataViewdv=newDataView();DataSetds=newDataSet();OpenConnection();cmd.CommandType=CommandType.Text;cmd.CommandText=sqlStr;da.SelectCommand=cmd;da.Fill(ds);dv=ds.Tables[0].DefaultView;CloseConnection();returndv;}publicstaticvoidGetAlert(stringmessage,Pagepage)//显示对话框{page.ClientScript.RegisterStartupScript(page.GetType(),"","<scriptlanguage='javascript'type='text/javascript'>alert('"+message+"')</script>",false);}publicstaticvoidAlert(stringmessage,Pagepage)//显示对话框{page.Response.Write("<scriptlanguage='javascript'type='text/javascript'>functionwindow.onload(){alert('"+message+"');}</script>");}//调用办法:SqlHelper.Alert("您已经被禁止登录,请关闭本页后稍后再登录!",Page);///<summary>///警告窗口,服务器端弹出alert对话框,弹出对话框而不丢失背景///</summary>///<paramname="message">提示信息,例子:"不能为空!"</param>///<paramname="page">Page类</param>publicstaticvoidMsgBox(stringmessage,Pagepage)//显示对话框{Stringcsname="PopupScript";//定义客户端脚本名Typecstype=page.GetType();//定义客户端脚本类型ClientScriptManagercs=page.ClientScript;//创立一种ClientScriptManager类if(!cs.IsStartupScriptRegistered(cstype,csname))//如果脚本没有注册{Stringcstext="alert('"+page.Server.HtmlEncode(message)+"');";cs.RegisterStartupScript(cstype,csname,cstext,true);}}publicstaticvoidMsgBox(stringmessage,stringurl,Pagepage){ClientScriptManagercs=page.ClientScript;//创立一种ClientScriptManager类Stringcsname="PopupScript";//定义客户端脚本名Typecstype=page.GetType();//定义客户端脚本类型if(!cs.IsStartupScriptRegistered(cstype,csname))//如果脚本没有注册{Stringcstext="alert('"+page.Server.HtmlEncode(message)+"');window.location='"+url+"';";cs.RegisterStartupScript(cstype,csname,cstext,true);}}publicvoidAlertBox(stringmessage,stringurl){System.Web.HttpContext.Current.Response.Write("<script>alert('"+message+"');location.href('"+url+"')</script>");}publicstaticvoidCClose(Pagepage){//GetaClientScriptManagerreferencefromthePageclassClientScriptManagercs=page.ClientScript;//Defineth
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 防控期间免疫规划先进事迹(10篇)
- 医用产品购销协议(35篇)
- 食堂管理整改报告(3篇)
- 建筑工程一切保险条款(35篇)
- 文明校园创建的工作总结
- 计划生育药具工作计划
- DB12 3005-2017 建筑类涂料与胶粘剂挥发性有机化合物含量限值标准
- 江苏省淮安市(2024年-2025年小学五年级语文)统编版综合练习(上学期)试卷及答案
- 湖南省怀化市(2024年-2025年小学五年级语文)统编版专题练习(下学期)试卷及答案
- 2024年汽车内外饰件项目投资申请报告代可行性研究报告
- 银行保安服务外包采购项目投标方案技术方案(技术方案)
- 社会工作方法 个案工作 个案所需表格
- 小学生家长会课件
- 2024届中国一汽全球校园招聘高频500题难、易错点模拟试题附带答案详解
- 2024新教材高中政治 第二单元 经济发展与社会进步 第三课 我国的经济发展 3.1 坚持新发展理念教学设计 部编版必修2
- 2024至2030年中国大米市场调查及发展趋势研究报告
- 3.1列代数式表示数量关系(第2课时 列代数式) 课件 2024-2025学年七年级数学上册 (人教版2024)
- 土壤污染重点监管单位隐患排查技术指南第4部分:医药制造业
- 变压器二手买卖合同范本2024年
- 期刊编辑的学术期刊编辑规范考核试卷
- 个人不再信访承诺书
评论
0/150
提交评论