HTML5先行者高级交流群

欢迎加入学习讨论
专注前端,专注网页设计制作及网站开发项目 - (低价承接网站开发项目) QQ:370158739加入收藏RSS
-
2013-12-20 14:44:57
三层结构_.NET教程_编程技术
- “三层结构”是“外观层”、“商业逻辑层”、“数据库层”假设以这样的结构制作一个留言板,那么应该是: # 留言板页面的外观代码都存放在 .aspx 文件中 # 当用户点击页面上
-
2013-12-20 14:44:54
替换以|分割的相同字符串_.NET教程_编程技术
- 字符串 private string noSameStr(string str) { str = "|"+str; string[] strs = str.Split('|'); for(int i=0;i<strs.Length;i++) { if(strs[i].Trim() != "")
-
2013-12-20 14:44:54
IOCP Thread Pooling in C#_.NET教程_编程技术
- IOCP Thread Pooling in C#By William KennedyContinuum Technology CenterIntroduction When building server based applications in C#, it is important to have the abilit
-
2013-12-20 14:44:52
C# struct class Differences_.NET教程_编程技术
- C# struct/class Differencesstruct Direct{ //...}class InDirect{ //...}Events are locked? Exist on stack or heap? Can cause garbage collection? Meaning of this? Alwa
-
2013-12-20 14:44:52
C#冒泡算法!_.NET教程_编程技术
- 算法 参加多次笔试,居然有几次都考到了冒泡算法,一次是C#版的填空,一次是javascript版的全部写出。虽然每次都凭着我对冒泡法的理解给弄出来的,但是多多少少与标准模式有点差别,在网上
-
2013-12-20 14:44:51
快速开发vs.net+c#程序(-)_.NET教程_编程技术
- 程序 一、已有数据库(SQL)表,快速生成对应存储过程的工具。SQLPilot.exe SQLPilot.exe这个程序是CCF的一个朋友写的,具体请参考http://bbs.et8.net/bbs/showthread.php?t=534183
-
2013-12-20 14:44:51
C#对XML操作:编辑XML文件内容_.NET教程_编程技术
- xml 第三章:XML文件记录的编辑使用C#来编辑XML文件,最方便的方法当然还是使用DATASET我们继续使用上一篇中的XML文件,如下: <users> <xs:schema id="users" xmlns="" xmlns:xs="http
-
2013-12-20 14:44:49
利用c#制作简单的留言板(1)_.NET教程_编程技术
- 留言板分三个模块:列出留言列表、显示详细内容、发表留言notepage.csnamespace notpage{using System;using System.Data.SQL ;using System.Data ;using System.Collections ;
-
2013-12-20 14:44:47
如何让一个函数返回多个值(C#)_.NET教程_编程技术
- 函数 有两种方法:1.使用指针变量声明函数(或者使用数组变量)2.使用传出参数第一种方法:函数返回的是一个指针地址(数组地址),这个内存地址有多个变量寄存在里面。这个方法我不太会用,传
-
2013-12-20 14:44:45
身份证号码15位升18位(C#)_.NET教程_编程技术
- 身份证号码15位升18位身份证18位验证 18位身份证标准在国家质量技术监督局于1999年7月1日实施的GB11643-1999《公民身份号码》中做了明确的规定。 GB11643-1999《公民身
-
2013-12-20 14:44:45
C#获取本地计算机名,IP,MAC地址_.NET教程_编程技术
- using System;using System.Drawing;using System.Management;using System.Net;using System.Net.Sockets;using System.Collections;using System.ComponentModel;using Syste
-
2013-12-20 14:44:43
用C#读取sina天气预报到wap页面(二)_.NET教程_编程技术
- sina|天气预报|页面 public class weather : System.Web.UI.MobileControls.MobilePage { protected System.Web.UI.MobileControls.Label Label1; protected System.Web.UI.
-
2013-12-20 14:44:43
用C#读取sina天气预报到wap页面(一)_.NET教程_编程技术
- sina|天气预报|页面 页面代码:<%@ Register TagPrefix="mobile" Namespace="System.Web.UI.MobileControls" Assembly="System.Web.Mobile" %><%@ Page language="c#" Codebehind="we
-
2013-12-20 14:44:42
C#版MultiSelected DataGrid_.NET教程_编程技术
- datagrid|select using System;using System.Drawing;using System.Collections;using System.Windows.Forms;namespace cSharpDataGrid{ public class MyDataGrid : System.Win
-
2013-12-20 14:44:42
简单的多人聊天(C#.Socket)._.NET教程_编程技术
- /********************************8ChatServer:*************************************************/using System;using System.Drawing;using System.Collections;using Sy
-
2013-12-20 14:44:39
C#调用ORACLE存储过程返回结果集及函数_.NET教程_编程技术
- oracle|存储过程|函数 ORACLE段:首先在ORACLE建立PACKAGE和PACKAGE BODY,将在这里面定义函数和存储过程返回结果集。1:建立PACKAGE:CREATE OR REPLACE package SCOTT.pk_wtistype m
-
2013-12-20 14:44:39
C#实现的根据年月日计算星期几的函数_.NET教程_编程技术
- 函数 算法如下: 基姆拉尔森计算公式W= (d+2*m+3*(m+1)/5+y+y/4-y/100+y/400) mod 7 在公式中d表示日期中的日数,m表示月份数,y表示年数。注意:在公式中有个与其他公式不同的地方:
-
2013-12-20 14:44:37
汇总c#.net常用函数和方法集_.NET教程_编程技术
- 函数 1、DateTime 数字型 System.DateTime currentTime=new System.DateTime(); 1.1 取当前年月日时分秒 currentTime=System.DateTime.Now; 1.2 取当前年 int 年=currentTime.
-
2013-12-20 14:44:35
C#中关于GDI+输出的问题_.NET教程_编程技术
- 问题 在.net Framework的框架中有很多操作各种图形的函数,包括:点,线,面等等,构成的各种各样的丰富的图象。 在这里我主要是介绍在.Net Framework中GDI+下的TEXT(文本)的操作。首先以
-
2013-12-20 14:44:35
几个C# PROGRAMS_.NET教程_编程技术
- using System;namespace Wrox.ProCSharp.OOProg //The first program{ class MainEntryPoint { static void Main() { Authenticator myAccess = n
-
2013-12-20 14:44:33
几个C# PROGRAMS (2)_.NET教程_编程技术
- using System;using System.Text.RegularExpressions;namespace Wrox.ProCSharp.RegularExpressionPlayaround{ class MainEntryPoint { static void Main() {