易截截图软件、单文件、免安装、纯绿色、仅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动态生成txt文本文件供用户下载

 一,JS动态创建表单
 var result = "   <form method='post'  action='../xiazai.aspx'><table width='100%' border='0' cellpadding='0' cellspacing='1' bgcolor='#BDB4A2'>"+
                "&l ......

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 ......

asp.net中application,session,cookie,viewstate

asp.net中application,session,cookie,viewstate,cache对象
在asp.net中内置对象如application,session,cookie,viewstate,cache等的生存周期和应用范围从大到小为application,cache,session,cookie,viewstate.
application和cache的应用范围都是在整个应用程序中.而session,cookie,viewstate则是基于每个用户,application ......

ASP.Net中利用ashx实现图片防盗链代码

GET /Img.ashx?img=svn_work.gif HTTP/1.1
Accept: */*
Referer: http://www.svnhost.cn/
Accept-Language: zh-cn
UA-CPU: x86
Accept-Encoding: gzip, deflate
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号