C#
LuYanLin_
这个作者很懒,什么都没留下…
展开
-
TextBox输入框数字的控制
<asp:TextBox ID="SFZCode" validator="true" placeholder="请输入身份证号" onkeyup="this.value=this.value.replace(/[^\d.]/g,'')" onafterpaste="this.value=this.value.replace(/[^\d.]/g,'')" ClientIDMode="Static" class="form-control no-border" runat="server"><.原创 2022-04-21 17:39:07 · 457 阅读 · 0 评论 -
RadioButtonList的radio样式
<asp:RadioButtonList ID="Sex" runat="server" ClientIDMode="Static" RepeatDirection="Horizontal" CssClass="Radio" Enabled="false"> <asp:ListItem Value="男">男</asp:ListItem> <asp:ListItem Value="女">女<.原创 2022-04-21 17:36:14 · 648 阅读 · 0 评论 -
上传照片(前台后台),显示
ProjectManager.aspx前端<%:Styles.Render("~/Content/bootstrap-table")%><%:Styles.Render("~/forms/artDialog/skins/default2.css")%><%:Styles.Render("../CSS/fileinput.min.css")%><%:Scripts.Render("~/bundles/bootstrap-table")%><%:原创 2022-03-09 15:43:36 · 165 阅读 · 0 评论 -
任务计划程序
文件类型:.vbsDim httpSet http = CreateObject("Msxml2.ServerXMLHTTP")http.open "GET","https://oa.swsmu.com/BpmSite/Menu.ashx?Action=GetAllUserMenu", Falsehttp.send原创 2022-03-09 15:18:20 · 143 阅读 · 0 评论 -
导入数据(前后台)
<%:Styles.Render("../CSS/fileinput.min.css")%><%:Scripts.Render("~/bundles/bootstrap-table")%><%:Scripts.Render("~/bundles/bootstrap-dialog")% <%:Scripts.Render("../JS/fileinput.min.js")%> <%:Scripts.Render("~/forms/artDialog/ar原创 2022-03-09 14:12:45 · 215 阅读 · 0 评论 -
.NET C#基础知识整理
1、泛型解决了装箱拆箱中的效率和多次定义的问题2、装箱与拆箱1装箱与拆箱2定义了object类型的会涉及到装箱拆箱。装箱是将值类型转换为引用类型。拆箱就是将引用类型转换为值类型。int i=5;object o=i;//装箱int j=(int)o;//拆箱值类型和引用类型C#的引用类型包括:数组、委托、接口、object、字符串、用户定义的类。C#的值类型包括:数值类型、结构体、bool型、枚举、可空类型、用户定义的结构体。3、object类Object类是C#中最原始、最重要原创 2022-03-08 15:24:17 · 293 阅读 · 0 评论 -
C# https post json格式调用接口
using Newtonsoft.Json.Linq;using System.Net.Security;using System.Security.Cryptography.X509Certificates;using Newtonsoft.Json;using System.IO;using System.Net; private static readonly string DefaultUserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64;原创 2022-02-23 11:35:10 · 1283 阅读 · 0 评论 -
C# https post formdata调用接口
using Newtonsoft.Json.Linq;using System.Net.Security;using System.Security.Cryptography.X509Certificates;using Newtonsoft.Json;using System.IO;using System.Net; private static readonly string DefaultUserAgent = "Mozilla/5.0 (Windows NT 6.1; Win64;.原创 2022-02-23 11:30:33 · 1281 阅读 · 1 评论 -
AES加密解密,ECB模式
using System.Security.Cryptography;/// <summary> /// 加密 /// </summary> /// <param name="encryptStr">要加密的明文</param> /// <param name="Key">密码</param> /// <returns></returns> public stat原创 2022-02-23 11:20:59 · 4443 阅读 · 0 评论 -
form Submit上传文件
前台OnClientClick比OnClick先触发,可以用作验证 <form id="form1" runat="server" enctype="multipart/form-data"> <table border="0" width="100%"> <tr> <td align="center"> <asp:Button ID="btnOK"原创 2021-09-27 16:15:54 · 331 阅读 · 0 评论 -
后台加载DropDownList下拉框,及后台方法联动局部刷新
一:后台加载DropDownList后台查询配置表显示内容并赋值var list = ShuiWuPeiZhi.FindAll("", "", "", 0, 0); if (list != null && list.Count() > 0) { YWContent.DataSource = list; YWContent.DataTextField = "YW";原创 2021-09-06 15:02:22 · 632 阅读 · 0 评论 -
GridView查询视图下一页报错
GridView查询视图下一页报错GridView查询的是视图时,分页显示下一页会报错,这里就需要将底层类里面的ID设置主键原创 2021-03-18 15:34:08 · 173 阅读 · 0 评论 -
后台动态生成a标签到前台显示
var a = ""; foreach (var item in prs) { a += "<a onclick='openViewWin(\"" + item.LargePurchaseApplyTaskID + "\")' href='#'>" + item.LargePurchaseApplyNo + "</a>,";原创 2020-06-10 16:25:28 · 501 阅读 · 0 评论 -
从客户端中检测到有潜在危险的Request.Form值
一、在asp.net webform中1、当前提交页面,添加代码打开当前.aspx页面,页头加上代码:validateRequest=”false”,如:<%@ Page Language=“C#” ValidateRequest=“false” AutoEventWireup=“false” CodeFile=“default.aspx” @%>12、全局修改web.config配置文件(此举不建议、不安全)打开web.config文件,在<system.web><转载 2020-06-10 16:19:07 · 231 阅读 · 0 评论