摘要:
一、条件语句:if(条件){ //执行语句 }else if{条件}{ //执行语句 }else{ //执行语句 }int i=0;swith(i){ case 0: //执行语句 break; case 1: //执行语句 break; default: //都不满足则执行此语句 break;}二、循环语句:for(int i=0;i<10;i++... 阅读全文
摘要:
WebBrowser控件使用详解方法说明 GoBack相当于IE的“后退”按钮,使你在当前历史列表中后退一项 GoForward相当于IE的“前进”按钮,使你在当前历史列表中前进一项 GoHome相当于IE的“主页”按钮,连接用户默认的主页 GoSearch相当于IE的“搜索”按钮,连接用户默认的搜索页... 阅读全文
摘要:
'主板蜂鸣'' Beep'' VB声明' Declare Function Beep Lib "kernel32" (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long' 说明' 用于生成简单的声音' 返回值' Long,TRUE(非零)表示成功,否则返回零。会设置GetLastError' 参数表' 参数 类型及说明' dwFreq L... 阅读全文
摘要:
一、重启mysql服务 在开始运行窗口输入如下命令 关闭mysql服务 net stop mysql 起动mysql服务 net start mysql二、MySQL 数据库文件的默认路径 在my.ini文件中 datadir="f:/lamp/MySQL Server 5.1/Data/"三、Appache web根目录的默认路径 在httpd.conf文件中 <Di... 阅读全文
摘要:
1.logo图片 \themes\ClassicSugar\images\company_logo.png2.登陆图片\images\middle-bg.gif3.默认主题\config.php'default_theme' => 'ClassicSugar'4.不显示选择主题\login.php位置:<td align=right>主题:</td><td>... 阅读全文
摘要:
libraries/select_lang.lib.php 1、找到有"zh-gb2312"的那一行,把'zh-gb2312' 改成 'zh-gb2312-utf-8'2、找到"$mysql_charset_map = array("那一行 把'gb2312' => 'gb2312', 改成 'gb2312' => 'latin1', 并将所有'latin1'注释掉 保存,OK... 阅读全文
摘要:
winXP 默认情况下是不搜索 扩展名为php的文件中的内容解决方案:创建一个*.reg文件。用文本打开将下面代码粘贴至其中,保存后执行即可。Windows Registry Editor Version 5.00[HKEY_CLASSES_ROOT\.php\PersistentHandler]@="{5e941d80-bf96-11cd-b579-08002b30bfeb}" 阅读全文
摘要:
一.下载相关软件 软件 下载地址httpd-2.2.15-win32-x86-no_ssl.msi http://httpd.apache.org/download.cgimysql-5.1.46-win32.msi http://dev.mysql.com/downloads/php-5.2.13-Win32.zip http://www.php.net/downloads.phpphpMyAd... 阅读全文
摘要:
本文是学习了黄忠成老师的《决战.net -.net framework 3.5》书中 LINQ To DataTable 的相关章节,并应用到自己的项目中,发现很受用,所以将其中几个示例,拿出来分享一下。 如果在项目遇到这样的问题如:DataTable1和DataTable2需要根据一定的规则进行合并成一个DataTable3。问题1:DataTable1不是读数据库表的结果,而是合成的数据集,... 阅读全文
摘要:
静态方法:using System;using System.Collections;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;using System.Reflection;Public static Data... 阅读全文
摘要:
效果图:前台部份:<ext:Store ID="Store1" runat="server" AutoLoad="false" > <Reader> <ext:JsonReader ReaderID="id"> <Fields> <ext:RecordField Name="id" Type="String" Mapping="id" />... 阅读全文
摘要:
1.将FCK加入到系统中 (1)工程引用FredCK.FCKeditorV2.dll (2)将fckeditor文件夹考至工程目录下 (3)在页面上写<FCKeditorV2:FCKeditor ID="fckHtmlEditor" runat="server" Height="600" Width="880"/>后台取值: string str=this.fckHtml... 阅读全文
摘要:
有两种方式:.net wsdl文件用法(一)工程—引用Web服务 添写wsdl文件地址,单击前往,修改命名空间,确定。 命名空间.WebService名称.FileServiceClient fs = new 命名空间.WebService名称.FileServiceClient();//实例化webservice客户端对象(二)通过WSDL文件自动生成类-WebService ... 阅读全文
摘要:
用MySQLDriverCS连接MySQL数据库 先下载和安装MySQLDriverCS,地址: http://sourceforge.net/projects/mysqldrivercs/ 在安装文件夹下面找到MySQLDriver.dll,然后将MySQLDriver.dll添加引用到项目中 注:我下载的是版本是 MySQLDriverCS-n-EasyQueryTools-4.0.1-Dot... 阅读全文
摘要:
//读Xml至DataTable private void butInputXml_Click(object sender, EventArgs e) { DataSet ds = new System.Data.DataSet(); ds.ReadXml(this.txtXmlFile.Text); DataTable dt = ds.Tables[0]; this.dataGridVie... 阅读全文
摘要:
using System;using System.Text;using System.Net.Sockets;using System.Net;namespace myClass{ class clsListenPort { #region 使用说明 /* 用途:监听某IP,指定端口,捕获通过此端口的消息。 举例: private delegate void ListenPostModel(st... 阅读全文
摘要:
C# 控件的缩写1 btn Button 2 chk CheckBox 3 ckl CheckedListBox 4 cmb ComboBox 5 dtp DateTimePicker 6 lbl Label 7 llb LinkLabel 8 lst ListBox 9 lvw ListView 10 mtx MaskedTextBox 11 cdr MonthCalendar 12 icn N... 阅读全文
摘要:
在webform上实现走马灯效果 前台:<MARQUEE.stop().start() scrollamount=1 scrolldelay=1 direction= left border="1" style="width: 31%; height: 16px;"><%=Structure%></MARQUEE> 后台:public string Struct... 阅读全文
摘要:
WebUserControl.ascx.cs 文件public delegate void myDelegate(string a,string b); public event myDelegate EventRefresh; private string _客户id; private string _录音编号; public string p_客户id { set { _客户id = valu... 阅读全文
摘要:
在webform开发中难免会遇到将GrilView中的数据转换成DataTable,下面的类将实现这个功能,但仅是显示出来的数据,如有分页得另行处理。 using System;using System.Collections.Generic;using System.Text;using System.Web.UI.WebControls;using System.Data;using Syst... 阅读全文