摘要:
在存储过程中动态创建临时表 下面代码是执行不成功 .DECLARE@CreateTableSqlVARCHAR(1000)--创建临时表的命令SET@CreateTableSql='CreateTable#FirstTable(名称varchar(20)null,'DECLARENamecursorCURSOR--声明游标用于查询大类名称FORSELECTF_nameFROMfood_typeinfoWHEREF_type=0--查询大类的名称OPENNamecursorDECLARE@TypeNameNVARCHAR(20)--存储大类的名称FETCHNEXTFROMName 阅读全文
摘要:
(转)回发或回调参数无效。在配置中使用 <pages enableEventValidation="true"/> 或在页面中使用 <%@ Page EnableEventValidation="true" %> 启用了事件验证。出于安全目的,此功能验证回发或回 调事件的参数是否来源于最初呈现这些事件的服务器控件。如果数据有效并且是预期的,则使用 ClientScriptManager.RegisterForEventValidation 方法来注册回发或回调数据以进行验证。说明: 执行当前 Web 请求期间,出现未处理的异常。请 阅读全文
摘要:
//Request.CurrentExecutionFilePath; 当前请求的虚拟路径 是这种格式:\虚拟目录名\admin\index.aspx//Request.ApplicationPath //获取服务器上ASP.NET应用程序的虚拟应用程序根路径。\虚拟目录名(应用程序名)以上都是虚拟目录中的文件路径,即是IIS中的路径。要得到真真的物理路径要在得到以上路径的基础上再加:Server.MapPath(Request.ApplicationPath +"SPLConfig/ClassMap.xml")//这样可能会有一个BUG最好是这样string m_Appl 阅读全文
摘要:
protected void Page_Load(object sender, EventArgs e) { // 在此处放置用户代码以初始化页面 string destFileName = Request.QueryString["destFileName"] != null ? Request.QueryString["destFileName"] : ""; destFileName = Server.MapPath("../") + destFileName; destFileName = Server.U 阅读全文
摘要:
string str1 = String.Format("{0:N1}",56789);//result: 56,789.0string str2 =String.Format("{0:N2}",56789);//result: 56,789.00string str3 = String.Format("{0:N3}",56789);//result: 56,789.000string str8 = String.Format("{0:F1}",56789);//result: 56789.0string str9 阅读全文
摘要:
<asp:Button runat="server" ID="btnSave" Text="保存" OnClientClick="return SaveData();" CssClass="ButtonCss" OnClick="BtnSave_Click"/> 阅读全文
摘要:
准备工作就是可以分页的DataGridView,和两个按钮,一个用来导出当前页数据到Excel,一个用来导出全部数据到Excel没有使用SaveFileDialog,但却可以弹出保存对话框来先做导出当前页数据到Excel的DataGridView命名为dataGridView1#region 导出当前页到Excel中//按下导出按钮private void button7_Click(object sender, EventArgs e){ print(dataGridView1);}public void print(DataGridView dataGridView1){ //导出到exe 阅读全文
摘要:
方法一:在开发中有时并不希望页面被缓存,特别是弹出式窗体,可以使用一下方法处理,将页面设置为不缓存。方法一:在页面文件的HEAD中添加<HEAD><METAHTTP-EQUIV="Pragma"CONTENT="no-cache"><METAHTTP-EQUIV="Cache-Control"CONTENT="no-cache"><METAHTTP-EQUIV="Expires"CONTENT="0"></HEAD> 阅读全文
摘要:
html代码: <asp:DataGrid id="DataGrid1" runat="server" AutoGenerateColumns="False" onitemcreated="DataGrid1_ItemCreated" onitemdatabound="DataGrid1_ItemDataBound"> <Columns> <asp:TemplateColumn> <ItemTemplate> <asp:CheckBox Ru 阅读全文
摘要:
asp.net 中<asp:TextBox ID="TextBoxUserID" runat="server" style="width:160px" onfocus="javascript:this.select()"></asp:TextBox><input type="text" onfocus="this.select()" value="sssssbbbbccc">c#中在 Click 事件里调用 Select 阅读全文