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;

            }

        }

    }

      

     

  • 相关阅读:
    EMVTag系列15《选择应用响应数据》
    EMVTag系列14《支付环境响应数据》
    EMVTag系列13《脱机PIN》
    EMVTag系列9《卡片管理数据》
    EMVTag系列7《静态签名数据》
    EMVTag系列6《IAC 发卡行行为代码》
    EMVTag系列2《磁条等效数据》
    code1169 传纸条
    关于 变量越界
    code1039 数的划分
  • 原文地址:https://www.cnblogs.com/ximi07/p/11142837.html
Copyright © 2011-2022 走看看