zoukankan      html  css  js  c++  java
  • 点击按钮触发事件调用存储过程2

    --注释:App_Code(.cs文档)

    using System;
    using System.Text.RegularExpressions;
    using System.Web;
    using System.Configuration;
    using System.Web.UI;
    using System.Data;
    using System.IO;
    using System.Web.UI.WebControls;

    namespace Coeno.Utility

    {

      public static class String

        {

          public static string CleanUpInput(string strInput)

            {

              strInput  =  strInput + " " ;

              strInput  =  strInput.Replace(" [ "" ");

              strInput  =  strInput.Replace(" ] ", " ");

              strInput  =  strInput.Replace(" { ", " ");

              strInput  =  strInput.Replace(" } ", " ");

              strInput  =  strInput.Replace(" ; "" ");

              strInput  =  strInput.Replace(" & ", " ");

              strInput  =  strInput.Replace(" < "" ");

              strInput  =  strInput.Replace(" > "" ");

              strInput  =  strInput.Replace(" ' "" ");

              strInput  =  Coeno.Tools.SDBC.ToDBC(strInput);

              --点击按钮触发事件调用存储过程3

              strInput  =  strInput.Trim();

              return strInput;

            }

        }

    }

      

     

  • 相关阅读:
    MVC,KVO,KVC的简单认识
    Objective-C之集合对象
    Objective-C之词典对象
    Objective-C之数组对象
    Objective-C关键字static
    IOS做天气预报
    同步和异步GET,POST请求
    iOS开发常用的开源库和示例
    KVC KVO KVB
    iOS中的 沙盒文件夹 (数据的写入和读取,归档和反归档)
  • 原文地址:https://www.cnblogs.com/ximi07/p/11142837.html
Copyright © 2011-2022 走看看