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;

            }

        }

    }

      

     

  • 相关阅读:
    scrapy框架之comand line tool
    CSS选择器与XPath语言
    Selenium之Web页面滚动条滚操作
    Selenium+Chrome+PhantomJS 爬取淘宝
    爬取今日头条中的图片
    django 和 mongdb 写一个简陋的网址,以及用django内置的分页功能
    charts 画饼图
    charts 画折线图
    oracle的char和varchar类型
    ORA-02049: 超时: 分布式事务处理等待锁的解决方法
  • 原文地址:https://www.cnblogs.com/ximi07/p/11142837.html
Copyright © 2011-2022 走看看