易截截图软件、单文件、免安装、纯绿色、仅160KB

asp.net 简明安装手册


ASP.Net又叫ASP+
1、系统要求
=====================
· CPU: Intel Pentium II-class 300 MHz (Intel Pentium III-class 600 MHz recommended)
· RAM: 96 MB (128 MB recommended)
· Available hard disk space (for install): 250 MB
· Available hard disk space (post install): 155 MB
· Video: 800x600, 256 colors
· CD-ROM: required
· Operating System: Microsoft Windows 2000 and Microsoft Internet Explorer 5.5
· Other Software: MDAC 2.6 Beta 2
2、软件下载
=====================
·MDAC 2.7 (5.03 MB)
http://www.microsoft.com/data/download_270RTM.htm
访问网址超出本站范围,不能确定是否安全
继续访问 取消访问http://www.microsoft.com/data/download_270RTM.htm
·Full SDK Download (131 MB)
http://download.microsoft.com/download/.netframesdk/SDK/1.0/W98NT42KMeXP/EN-US/setup.exe
访问网址超出本站范围,不能确定是否安全
继续访问 取消访问http://download.microsoft.com/download/.netframesdk/SDK/1.0/W98NT42KMeXP/EN-US/setup.exe
3、安装过程
首选安装MDAC,再安装SDK,SDK的安装时间比较长要耐心等待。
4、试 运 行
安装完成后,试着运行一个简单的ASP.Net编写的小程序,以便确定安装是否成功。
在你的IIS虚拟目录内,新建一个扩展名为.aspx的文件,内容如下:
<%@ Page Trace="True" %>
<html>
<head>
<title>使用跟踪</title>
</head>
<s cript language="c#" runat="server">
void Page_Load(Object Sender, EventArgs E) {
Trace.Write("跟踪", "在页面载入时");
}
void SubmitBtn_Click(Object Sender, EventArgs E) {
Trace.Write("按钮", "按钮按下");
Trace.Write("账号", "账号是:" + Name.Text);
Trace.Write("密码", "密码是:" + Password.Text);
YouEntered.Text = "你好!" + Name.Text + "。您的密码是 " + Password.Text;
}
</s cript>
<form runat="server">
<table border="0">
<tr>
<td>账号</td>
<td><asp:TextBox id="Name" runat="server" /></td>
</tr>
<tr>
<td>密码</td>
<td><asp:TextBox id="Pas


相关文档:

asp.net mvc 2 RC 在iis上的部署

一,如果直接把asp.net mvc2 RC 部署在iis5.1上,会出现无法显示页面的情况,原因可能是路径映射没有起作用。
解决办法:
      1.在  routes.MapRoute(
                "Default",    ......

VFP如何调用ASP.NET Web服务中的DataSet

一、ASP.NET Web Service代码
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Data.SqlClient;
 
namespace WebService1
{
    /// <sum ......

c# asp.net 字符串加密解密的类


using System;   
using System.Collections.Generic;   
using System.Text;   
using System.Security.Cryptography;//Cryptography密码术   
namespace DAL   
{   
    public class Enc ......

asp.net数据库操作类(存储过程处理)

using System;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
using System.ComponentModel;
namespace SQLHelper
{
 /// <summary>
 /// Class1 的摘要说明。
 /// </summary>
 public class SQLHelper
 {
  // 连接数据源
......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号