摘要:
<ul class='wraplist' > <li class="open"> <a href="javascript:;"> <i class="fa fa-folder-open"></i> <span class="title">Menu Levels</span> <span class= 阅读全文
摘要:
<ul class='wraplist' > <li class="open"> <a href="javascript:;"> <i class="fa fa-folder-open"></i> <span class="title">Menu Levels</span> <span class= 阅读全文
摘要:
jQuery方式调用J(function(){ J('#btn1').dialog({ id:'test1', html:'<h3>我是jQuery方式调用的窗口</h3>' });});运行»普通函数方式调用function opdg( id ){ var dg = new J.dialog({ 阅读全文
摘要:
select * from t_answerexams; delete from t_answerexams where selectid = 'c4582502-8b27-44ee-83c5-e5ba46758905'; SET SQL_SAFE_UPDATES = 0; 阅读全文
摘要:
var ID = ""; $('input:radio:checked').each(function (i) { if ($(this).prop("checked")) { // alert($(this).val()); ID += $(this).val() + ", " } }); ale 阅读全文
摘要:
MySQL 的 RowNum 实现 MySQL 下面没有RowNum,排序后序号却无法得到,比较麻烦!在网上找了再三,通过比较,确认了以下的方法是可行的 :SELECT @rownum:=@rownum+1 rownum, CollectSn From(SELECT @rownum:=0,bbgma 阅读全文
摘要:
String sql = Brg.Global.Map.BaseBatis.GetRuntimeSql("select_T_JewelleryProductType", _Model); /// <summary> /// 得到运行时ibatis.net动态生成的SQL /// </summary> 阅读全文
摘要:
public class overdue { public int overdueTimes { get; set; } /// <summary> /// 90天以上逾期次数 /// </summary> [JsonProperty(PropertyName = "90overdueTimes") 阅读全文
摘要:
using Dscf.Bpl.InformationAuditBpl; using Dscf.Bpl.ProductBpl; using Dscf.Global.CommonAduit; using Dscf.Global.Model; using System; using System.Coll 阅读全文
摘要:
using System;using System.Text; namespace Common{/// <summary>/// 实现Base64加密解密/// </summary>public sealed class Base64{/// <summary>/// Base64加密/// </ 阅读全文
摘要:
C#读写txt文件的两种方法介绍 1.添加命名空间 System.IO; System.Text;2.文件的读取 (1).使用FileStream类进行文件的读取,并将它转换成char数组,然后输出。 byte[] byData = new byte[100]; char[] charData = 阅读全文
|