摘要: https://cloud.tencent.com/developer/article/1070925 阅读全文
posted @ 2024-07-07 21:06 请叫我七哥 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 验证视图状态 MAC 失败。如果此应用程序由网络场或群集托管,请确保 <machineKey> 配置指定了相同的 validationKey 和验证算法。不能在群集中使用 AutoGenerate。 https://www.cnblogs.com/lsgxeva/p/9668931.html 暂时记 阅读全文
posted @ 2024-06-05 21:10 请叫我七哥 阅读(3) 评论(0) 推荐(0) 编辑
摘要: update dt_users set reg_time= (CONVERT(varchar(100), reg_time, 23)+' '+'13:00:00' ) where CONVERT(varchar(100), reg_time, 8)='01:00:00' 阅读全文
posted @ 2024-06-05 15:33 请叫我七哥 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1. JSON定义 全称“JavaScript Object Notation(JavaScript对象表示法)”,JSON 是存储和交换文本信息的语法。 举例: [ { "id": 2, "name": "星河爆破", "number": 999 }, { "id": 3, "name": "九星 阅读全文
posted @ 2024-05-21 20:18 请叫我七哥 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 之前说到了Ext.Net中GridPanel行取值的问题(Ext.Net开发_GridPanel行选中取值),涉及到checkBox操作时,要留个心眼注意下取值的区别!返回值是Json格式。 现在用到了Json,就想自己也整一个Josn帮助类。在线帮助的资料很多,在巨人的身上东凑西凑也凑一个用用。 阅读全文
posted @ 2024-05-21 19:42 请叫我七哥 阅读(8) 评论(0) 推荐(0) 编辑
摘要: Dictionary<string, object> dcic = JsonHelper.DataRowFromJSON(resultdepth); foreach (var depthkey in dcic.Keys) { if (depthkey.Contains("data")) { Dict 阅读全文
posted @ 2024-05-21 19:35 请叫我七哥 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 通过data-id='<%#Eval("id") %>' 绑定唯一id。 <ItemTemplate> <tr> <td style="padding:10px"> <div class="rule-multi-checkbox"> <label for="chkId"> <input type=" 阅读全文
posted @ 2024-05-19 08:16 请叫我七哥 阅读(4) 评论(0) 推荐(0) 编辑
摘要: <asp:Repeater ID="rptList" runat="server" onitemdatabound="rptList_ItemDataBound" > <HeaderTemplate> <table width="100%" border="0" cellspacing="0" ce 阅读全文
posted @ 2024-05-15 13:50 请叫我七哥 阅读(6) 评论(0) 推荐(0) 编辑
摘要: checkboxlist绑定数据方法 1.把数据绑定到CheckBoxList中 特别要注意加载顺序 protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { SqlConnection con = 阅读全文
posted @ 2024-05-13 19:53 请叫我七哥 阅读(12) 评论(0) 推荐(0) 编辑
摘要: function formatDate(date){ let year = date.getFullYear(); let month = date.getMonth()+1; let day = date.getDate(); month = month < 10 ?'0'+ month : mo 阅读全文
posted @ 2024-05-01 14:04 请叫我七哥 阅读(4) 评论(0) 推荐(0) 编辑