随笔分类 -  c#知识点

摘要:https://blog.csdn.net/qingkaqingka/article/details/88812351 c#开发的程序,需要引用到System.Web.Script.Serialization。习惯在解决方案右键添加引用,发现添加应用窗口没有“System.Web.Script.Se 阅读全文
posted @ 2022-10-22 14:42 yinghualeihenmei 阅读(671) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/wujy/p/3264475.html 一:HttpContext理论知识: 1:HttpContext类它对Request、Respose、Server等等都进行了封装,并保证在整个请求周期内都可以随时随地的调用;为继承 IHttpModule 和 阅读全文
posted @ 2022-10-20 18:10 yinghualeihenmei 阅读(26) 评论(0) 推荐(0) 编辑
摘要:来源:https://blog.csdn.net/weixin_43831728/article/details/107788822 为什么要引出构造函数这一概念 看下面的代码,对于Date类,可以通过InitDate公有的方法给对象设置内容,但是如果每次创建对象都调用该方法设置信息,未免有点麻烦, 阅读全文
posted @ 2022-10-17 10:51 yinghualeihenmei 阅读(155) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/VisageNocturne/article/details/112094795 http://t.zoukankan.com/SmilePastaLi-p-6824387.html https://www.w3xue.com/exp/article/20 阅读全文
posted @ 2022-10-14 01:33 yinghualeihenmei 阅读(742) 评论(0) 推荐(0) 编辑
摘要:前台删除按钮中设置的参数。 CommandName="delete" CommandArgument='<%#Eval("id")%>' Button控件使用的是Command事件,该事件可以在【CommandEventArgs e】e中传递CommandName和CommandArgument这两 阅读全文
posted @ 2022-09-30 15:28 yinghualeihenmei 阅读(36) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Good_StudyDaydayUp/article/details/82976951 https://blog.csdn.net/linxinfa/article/details/95215416 https://blog.csdn.net/qq_427 阅读全文
posted @ 2022-09-29 17:54 yinghualeihenmei 阅读(242) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/ChineseMoonGod/archive/2013/06/07/3123907.html <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inheri 阅读全文
posted @ 2022-09-23 18:35 yinghualeihenmei 阅读(50) 评论(0) 推荐(0) 编辑
摘要:https://wenda.so.com/q/1378244964066145 所谓元数据.其实是指由微软所封装的类..这些类你可以查看.但是无法修改..例如你看DateSet类的定义.就是元数据.因为是MS写的..只能看..不能改~ 阅读全文
posted @ 2022-09-22 16:00 yinghualeihenmei 阅读(148) 评论(0) 推荐(0) 编辑
摘要:https://m.imooc.com/wenda/detail/586470 https://www.cnblogs.com/xwc1996/p/9813728.html (我能看懂的一个wcf介绍) ASMX Web服务只能由HTTP(带有.asmx的传统Web服务)调用。WCF服务或WCF组件 阅读全文
posted @ 2022-09-22 14:17 yinghualeihenmei 阅读(188) 评论(0) 推荐(0) 编辑
摘要:https://www.runoob.com/python3/python3-string-split.htmlstr.split(str="", num=string.count(str)) str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。 num -- 分割次 阅读全文
posted @ 2022-09-20 15:13 yinghualeihenmei 阅读(24) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/Johnfx-home/p/3770359.html ①字体 其中gridView是gridView的Name(下同) gridView[column, row].Style.ForeColor = Color.Red;//设置第row行column列 阅读全文
posted @ 2022-09-19 09:57 yinghualeihenmei 阅读(1882) 评论(0) 推荐(0) 编辑
摘要:您可以手动将多个提示路径添加到csproj文件中,但Visual Studio将仅使用最后一个hintpath元素 阅读全文
posted @ 2022-09-17 16:19 yinghualeihenmei 阅读(37) 评论(0) 推荐(0) 编辑
摘要:cellpadding单元格之间的距离 为0 就是说紧挨着没缝隙cellspacing单元格中的内容与单元格边缘的距离为0 就说说内容紧挨着边缘 阅读全文
posted @ 2022-09-17 14:50 yinghualeihenmei 阅读(71) 评论(0) 推荐(0) 编辑
摘要:原文链接:https://www.cnblogs.com/ranran/p/3850870.html 一般处理程序(HttpHandler)是·NET众多web组件的一种,ashx是其扩展名。 一个httpHandler接受并处理一个http请求,类比于Java中的servlet。类比于在Java中 阅读全文
posted @ 2022-09-15 10:53 yinghualeihenmei 阅读(48) 评论(0) 推荐(0) 编辑
摘要:https://www.likecs.com/show-235632.html 4.1 按钮权限控制基本原理 以数据字典窗体【员工管理】举例说明,假设【员工管理】拥有以下按钮及对应的权限值: 模拟场景: 用户【User-孙】属于【Role1】角色, 在【角色管理】界面内给【Role1】角色分配【员工 阅读全文
posted @ 2022-09-14 03:18 yinghualeihenmei 阅读(461) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/SGZYL99999/article/details/103462766 PictureBox.SizeMode属性详解1.PictureBox.SizeMode.Normal 一般情况下,一个新的PictureBox会默认选择Normal属性,图片会默认 阅读全文
posted @ 2022-09-13 00:05 yinghualeihenmei 阅读(1922) 评论(0) 推荐(0) 编辑
摘要:https://jingyan.baidu.com/article/adc81513504a99f723bf73af.html http://c.biancheng.net/tkinter/what-is-gui.html 图形用户界面(Graphical User Interface,简称 GUI 阅读全文
posted @ 2022-09-12 22:47 yinghualeihenmei 阅读(48) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/ybyfu/article/details/125191904 创建一个类时,不需要完全重新编写新的数据成员和成员函数,只需要设计一个新的类,继承了已有的类的成员即可。这个已有的类被称为的基类,这个新的类被称为派生类。 继承是面向对象程序设计中最重要的概念 阅读全文
posted @ 2022-09-08 16:54 yinghualeihenmei 阅读(208) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/Thinkingcao/article/details/56486608 1、 $就是jquery的简写,$()就是一个选择器,document是html的所有元素,$(document)返回一个数组,而这个数组是一个对象,这个对象调用ready方法,fu 阅读全文
posted @ 2022-09-06 13:40 yinghualeihenmei 阅读(717) 评论(0) 推荐(0) 编辑
摘要:https://www.php.cn/js-tutorial-389090.html <button> 标签定义的是一个按钮 1、在 <button> 元素内部,您可以放置任何内容,比如文本或图像。这是该元素与使用 <input> 元素创建的按钮之间的不同之处; 2、 <button> 控件提供了更 阅读全文
posted @ 2022-09-06 00:21 yinghualeihenmei 阅读(76) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示