- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
在.aspx页面或者JS里怎么调用CS下的方法或者属性的方法
先来看看在.aspx下怎么调用吧
代码如下
[code=csharp]<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!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>
</head>
<body>
<form id="form1" runat="server">
<div>
<%-- 直接写在页面上--%>
在页面上直接显示的时间为:<%=DateTime.Now .ToShortTimeString() %>
在页面上直接显示的时间为:<%#DateTime.Now .ToShortTimeString() %>
<%-- 在属性里使用方法--%>
<aspabel ID="Label1" runat="server" Text="在控件上显示的时间为:<%# DateTime.Now .ToShortTimeString() %>"></aspabel>
<%-- 引用文件的方法--%>
<link href="<%# getmain() %>">
Styles/Site.css" rel="stylesheet" type="text/css" />
</div>
</form>
</body>
</html>[/code]
好了相信大家一看就明白了
|
|