.aspx :
%@ Page Language=C# AutoEventWireup=true CodeFile=SessionTest.aspx.cs Inherits=SessionTest %
!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
html xmlns=http://www.w3.org/1999/xhtml
head runat=server
title无标题页/title
link rel=Stylesheet href=test.css type=text/css/
script type=text/javascript
function ChangeColor()
document.body.bgColor = %=bgcolor%;
/script
/head
body οnlοad=ChangeColor()
form id=form1 runat=server
asp:Button ID=Button1 runat=server OnClick=Button1_Click Text=Button /
asp:Button ID=Button2 runat=server Text=Button /
/form
/body
/html
.aspx.cs 里
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Runtime.InteropServices;
public partial class SessionTest : System.Web.UI.Page
protected string bgcolor;
protected void Page_Load(object sender, EventArgs e)
protected void Button1_Click(object sender, EventArgs e)
bgcolor = red;
改颜色:.aspx :%@ Page Language=C# AutoEventWireup=true CodeFile=SessionTest.aspx.cs Inherits=SessionTest %!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml...
1.本书1~21章所附
代码
的运行环境
操作系统:Windows Server 2003或Windows XP Professional
开发环境:Microsoft Visual Studio 2005
数据库:SQL Server 2005
Web服务器:IIS 5.1及以上版本
2.本书所附光盘范例
第1章(\Chapter 01)
示例描述:本章演示
ASP.NET
2.0网站的预编译以及学习
ASP.NET
2.0的前置知识。
WebSite
文件
夹 创建的
ASP.NET
2.0
Web站点。
www
文件
夹 第一个用C#开发的Web应用程序。
bianyi.bat 编译网站的批处理
文件
。
form.
html
表单范例。
css
.
html
CSS
范例。
第3章(\Chapter 03)
示例描述:本章介绍C# 2.0程序设计基础。
3-01.
cs
第一个C#程序。
3-02.
cs
不导入命名空间来改
写
程序3-01.
cs
。
3-03.
cs
ReadLine()方法读数据。
3-04.
cs
常量的使用。
3-05.
cs
整型类型的使用。
3-06.
cs
结构类型的使用。
3-07.
cs
枚举类型的使用。
3-08.
cs
用一个输入参数通过值传递一个变量给一个方法。
3-09.
cs
一维数组的使用。
3-10.
cs
使用代理类型。
3-11.
cs
使用接口。
3-12.
cs
装箱操作。
3-13.
cs
字符串操作。
3-14.
cs
if语句的使用。
3-15.
cs
switch语句的使用。
3-16.
cs
while语句的使用。
3-17.
cs
do-while语句的使用。
3-18.
cs
for语句的使用。
3-19.
cs
异常捕获:try-catch语句的使用。
3-20.
cs
异常捕获:try-finally语句的使用。
3-21.
cs
异常捕获:try-catch-finally语句的使用。
3-22.
cs
get和set对属性的值进行读
写
操作。
3-23.
cs
方法的使用。
3-24.
cs
继承演示。
3-25.
cs
多态性演示。
第4 章(\Chapter 04)
示例描述:本章学习
ASP.NET
2.0
页面
基本对象。
4-01.
asp
x
asp
x
页面
中
添加一个Lable标签。
4-02.
asp
x 读出Application的属性值。
4-03.
asp
x 读出SessionID的值。
4-04.
asp
x 创建Session对象。
4-05.
asp
x 读取传递的Session值并显示。
4-06.
asp
x 使用Response对象的Write()方法。
4-07.
asp
x
新安装的VsCode ,打开发现
代码
都是白色,没有
颜色
区分,可以选择右下方的纯文本修改,但是只对那一个
页面
有用,其它
页面
还是没有用,
可以进行如下修改即可。
1、右键 -->Command Palette
2、输入Change Language Mode
3、选择Configure File Association for ‘.vue’
4、选择
html
您可以使用以下
代码
将
写
好的.
css
文件
引入.
asp
x
页面
中
:
<link rel="stylesheet" type="text/
css
" href="样式表
文件
路径" />
其
中
,样式表
文件
路径是指您
写
好的.
css
文件
在服务器上的路径。您可以将这段
代码
放在.
asp
x
页面
的<head>标签
中
。这样,您就可以在
页面
中
使用您
写
好的样式了。