博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
一些资料
阅读量:4950 次
发布时间:2019-06-11

本文共 1318 字,大约阅读时间需要 4 分钟。

//自定义时间样式
public string StrString(string time)
{
   return DateTime.Parse(time).ToString("MM-dd", DateTimeFormatInfo.InvariantInfo);
}
//自定义金额样式
public string GetMoney(string money)
{
    return  Decimal.Parse(money).ToString("0.0", NumberFormatInfo.InvariantInfo) ;
}
//MD5加密
Members.UpPassword(memberId, FormsAuthentication.HashPasswordForStoringInConfigFile(newPwd, "MD5"));
//添加到form1
$("#orders_list").parent().appendTo("#form1");
//截取字符串
<%#DataBinder.Eval(Container.DataItem, "Introduction").ToString().Length > 70 ? DataBinder.Eval(Container.DataItem, "Introduction").ToString().Substring(0, 70) + "..." : DataBinder.Eval(Container.DataItem, "Introduction").ToString()%>
//替换字符,去掉最后一个字符
proModel.Application.TrimEnd(",".ToCharArray()).Replace(",", "、")
<asp:ScriptManager ID="script1" runat="server">
    <Services>
        <asp:ServiceReference Path="~/Service/InformationTypeService.asmx" />
    </Services>
</asp:ScriptManager>

验证手机号码

^0{0,1}(13[0-9]|15[0-9]|18[0-9])[0-9]{8}$

$.each("你的字符串".split(','),function(i,v){

alert('<a href="">'+v+'</a>')
})
 this.ddlxz.Items.Insert(0, new ListItem("全部", "0"));
;select @@IDENTITY"

charindex('创业贷款',AskType)>0  判断 AskType是否包含 创业贷款 SQL

string strSql = @"truncate table Emails";   //清空email表中的信息

Request.UrlReferrer.ToString();

转载于:https://www.cnblogs.com/wh521t/archive/2011/09/21/2183846.html

你可能感兴趣的文章
C++回调机制实现(转)
查看>>
Qt事件处理(五)
查看>>
图像处理中的一些基本问题解释
查看>>
教你如何一键退出USB设备(转)
查看>>
期待博客园的同学们鼎力相助
查看>>
什么是JavaScript框架 (share)
查看>>
Android平台架构及特性
查看>>
在eclipse导入Java 的jar包的方法 JDBC【图文说明】
查看>>
Win 2008 R2 x64 PL/SQL 连接 Oralce 提示 Could not initialize "%ORACLE_HOME%\bin\oci.dll"
查看>>
关于c#中的Timer控件的简单用法
查看>>
halcon学习笔记——(12)图像分割
查看>>
ie6 下 overflow:hidden失效时解决办法
查看>>
RadioGroup RadioButton 和 自定义对话框(自定义确定和取消)
查看>>
GNU Emacs Manual for eReader — LinuxTOY
查看>>
FFLIB之FFLUA——C++嵌入Lua&扩展Lua利器
查看>>
Android UI 动画效果Animation
查看>>
关于静态事件 static event 的二三事
查看>>
Java中的反射机制(五) 关于Class类的补充说明
查看>>
hiberfil.sys和pagefile.sys
查看>>
Address already in use: JVM_Bind错误的解决方法
查看>>