随笔分类 - C#
摘要:简介 本文主要是作者回顾MVC基础的文章,整合个人认为基础且重点的信息,通过简单实践进行复习。 相关代码地址:https://github.com/OtherRuan/Review-Serials WebForm 开始说MVC的时候不得不提下WebForm,熟悉两者的区别和优劣,能够更好的理解MVC
阅读全文
摘要:云计算前身源地址:http://www.cnblogs.com/leslies2/archive/2011/12/12/2272722.html#t1 企业针对单个功能模块开发出一套独立的系统,再通过虚拟化技术为第三方服务。 就像一个通讯购物的平台,其实就是综合了内部业务管理、银行转帐服务、呼叫中心、第三方接口等多方服务的综合性平台。如果你有过这方面的经验,就会知道其 实银行转帐、呼叫中心不过就是银行、电信、移动等公司提供的几个简单的接口。开发人员根本无需理会其实内部的结构,只要通过几个简单的远程方法就能调用。 这正是应用层服务 Application Service 的最好体现。
阅读全文
摘要:测试的url地址是http://www.test.com/testweb/default.aspx, 结果如下: Request.ApplicationPath: /testweb Request.CurrentExecutionFilePath: /testweb/default.aspx Request.FilePath: /testweb/default.aspx Request.Path: /testweb/default.aspx Request.PathInfo: Request.PhysicalApplicationPath: E:\WWW\testweb\ Req...
阅读全文
摘要:int iConn = 0; if (state1.sck1 != null) { if (state1.sck1.Connected) { if (state1.sck1.Poll(500, SelectMode.SelectRead)) { iConn = state1.sck1.Receive(state1.acBuff); if (iConn == 0) { //socket连接已断开 } } else { iConn = 1; //连接 } } }
阅读全文
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.OleDb;namespace AddressList{ public partial class FrmAccessUse : Form { public FrmAccessUse() { InitializeComponent(); } #re
阅读全文
摘要:http://www.cnblogs.com/killers/articles/2133180.html
阅读全文

浙公网安备 33010602011771号