摘要: 其实也没有什么太多技术含量,就是一个代码搞定的,高手在的话我们可以多交流下QQ皮肤。主要代码先贴出来。鼠标滚动,滚动条跟随滚蛋,自己原创,百度搜不到的!! 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 using System.Text; 8 using System.Windows.Forms; 9 using System.Runtime 阅读全文
posted @ 2012-01-20 15:54 学坏 阅读(648) 评论(1) 推荐(1) 编辑
摘要: web.config<?xml version="1.0"?><!-- 有关如何配置 ASP.NET 应用程序的详细信息,请访问 http://go.microsoft.com/fwlink/?LinkId=169433 --><configuration> <appSettings> <add key="MYSQLCONNECTIONSTRING" value="Host=127.0.0.1;UserName=root;Password=phpnow;Database=cmt;Port=3 阅读全文
posted @ 2011-12-24 16:29 学坏 阅读(1516) 评论(3) 推荐(0) 编辑
摘要: function geturl($url){$ch = curl_init();$timeout = 5;curl_setopt($ch, CURLOPT_URL, $url);curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);//在需要用户检测的网页里需要增加下面两行//curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);//curl_setopt($ch, CURLOPT_USERPWD, US_NAME. 阅读全文
posted @ 2011-08-01 17:44 学坏 阅读(888) 评论(0) 推荐(1) 编辑
摘要: using System;using System.Collections;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;using Skins.Common;namespace lucy{ public partial class jiang : Skins.Common.MainForm { bool go = false; int a 阅读全文
posted @ 2011-07-26 12:50 学坏 阅读(1195) 评论(2) 推荐(0) 编辑
摘要: 1 function gostrsplit($str,$str1) { 2 //$str 数据库里面查询出来的内容 3 //$str1 要对比的项的内容 $res =false; 4 $str_array = explode(",",$str); 5 for ($j = 0; $j < count($str_array); $j++) { 6 if($str_array[$j]==$str1) 7 { 8 $res = true; 9 }10 }11 return $res;12 } 阅读全文
posted @ 2011-07-26 12:21 学坏 阅读(428) 评论(0) 推荐(0) 编辑