原创 使用Web.config中的鏈接字符串

Web.config <?xml version="1.0"?> <configuration> <configSections> ... </configSections> <appSettings/> <conne

原创 郵件發送

public void sendMail() { SmtpClient smtp = new SmtpClient("smtp.qq.com"); smtp.DeliveryMethod = SmtpDeliveryMet

原创 判斷圖片的類型

System.Drawing.Bitmap bmp = new Bitmap(filename); if (bmp.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Gif)) {

原创 線程安全性的測試

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawi

原创 多媒體之聲音控制

聲音控制: http://www.dreamincode.net/forums/topic/45693-controlling-sound-volume-in-c%23/

原创 php正則表達式相關函數

模式修正符 模式修正符是標記在整個正則表達式之外的,可以看着是對正則表達式的一些補充說明。 常用的模式修正符如下: 模式修正符 說明 i 模式中的字符將同時匹配大小寫字母 m 字符串視爲多行 s 將字符串視爲單行

原创 Eclipse快捷鍵大全

Eclipse快捷鍵大全 http://www.blogjava.net/action/articles/17339.html Ctrl+1 快速修復(最經典的快捷鍵,就不用多說了) Ct

原创 博客終於可以進來了

不知何時密碼泄露,造成廣告氾濫,最終被封閉,今天終於又進來了!!! 謝謝管理員的幫助~~~

原创 不用後綴表達式進行表達式計算(加、減、乘、除、整除、取餘、指數)

#include<iostream.h> #include<math.h> #include<stdlib.h> bool existChar(); // 檢查是否有可用的數據 double

原创 汽車違章查詢

汽車違章查詢是通過其他網站的頁面來完成的,這裏可以對其進行加工處理,這裏僅提供一種思路的參考。 該頁面可對鄭州市的車輛進行違章查詢,使用時請正確改正車牌號及VIN碼,本處直接寫死,且是錯誤的~~~ 其他地區能否使用,沒有測試,可能不行,特

原创 MySql 查詢中的 REGEXP

查詢d表中bt字段以“回車、換行、製表”開始的哪些記錄: select * from d where bt REGEXP '^[\r\n\t]' 詳情請參考:MySQL 正則表達式

原创 微信分享 WeixinJSBridge

<script type="text/javascript"> WeixinJSBridge.invoke = function _call(func, params, callback) { if (!func || type

原创 ListView應用1

顯示考試題目:     Default.aspx <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="listView

原创 php插入utf8格式的數據並顯示

<?php header("Content-type:text/html;charset=utf8"); //瀏覽器顯示頁面時的編碼 $con = mysql_connect("127.0.0.1","root","943237

原创 ViewState解碼分析器

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawin