
ASP.NET专区
seekboya
软件开发
展开
-
送水软件单机版本开发方案
最近准备开发一款送水软件,C/S架构,为了后期与MSSQL 完美对接,单机版选择了sql compact4.0, 功能模块主要分为:基础资料/供应商管理/客户管理/统计汇总 四个部分 后期功能开发一步步再分享给大家。 ...原创 2021-03-13 16:42:24 · 214 阅读 · 0 评论 -
一段简单的ASP.NET控件的绑定代码,供于初学者参考
SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["SQLCONNECTION"].ConnectionString); SqlCommand cmd = new SqlCommand("sheng_GetList",conn); cmd.Comma原创 2007-06-08 10:27:00 · 746 阅读 · 0 评论 -
C# 对XML文件的操作代码,与大家一起分享
//-------------------------------------------html 部分http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml" > XML function check() { if(docu原创 2007-06-13 12:42:00 · 847 阅读 · 0 评论 -
一个完整的ASP.NET购物车代码
using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.W原创 2007-06-12 12:02:00 · 7571 阅读 · 1 评论 -
.net 对IIS的管理,如添加域名,绑定目录,绑定主机头
注意使用时要有服务器管理员权限 ,可在Web.config 添加 using System; using System.DirectoryServices; using System.EnterpriseServices; using System.Text.RegularExpressions; namespace WebCloud.Builder原创 2012-05-15 17:22:17 · 1789 阅读 · 1 评论 -
asp.net mvc Post上传文件大小限制
<configuration> <system.web> <httpRuntime maxRequestLength="102400" executionTimeout="200" enable="true" /> </system.web> </configuration> 改完后还是不...转载 2019-06-10 17:07:00 · 916 阅读 · 0 评论