摘要: 建立了一个存储过程用来判断用户名是否存在过程如下:ALTER PROCEDURE [dbo].[t_userinfo_Exists]@user_name nvarchar(50)ASDECLARE @TempID int SELECT @TempID = count(1) FROM [t_userinfo] WHERE [user_name]=@user_name if @TempID = 0 s... 阅读全文
posted @ 2010-11-08 18:15 刘文辉 阅读(325) 评论(2) 推荐(0)
  2010年11月24日
摘要: 移动控件介绍及详细使用方法(看了这些你就基本会wap开发了)在以前学习的有关ASP.NET 和 Web 窗体的知识可以帮助您快速地使用移动控件来构建移动 Web 应用程序。现在我们就开始ASP.NET 移动控件的学习之旅吧。AdRotator控件AdRotator移动控件和传统的ASP.NET程序中的AdRotator控件是非常类似的。该控件的主要功能是用来随机并循环显示一组广告横幅。AdRota... 阅读全文
posted @ 2010-11-24 21:35 刘文辉 阅读(1744) 评论(0) 推荐(1)
  2010年8月17日
摘要: using System;using System.Collections.Generic;using System.Windows.Forms;namespace ExpressionResult1{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } //建立一个数栈和一个操作符栈 Stac... 阅读全文
posted @ 2010-08-17 18:49 刘文辉 阅读(598) 评论(0) 推荐(1)