urlaccess.aspx

来自「< SQL Server2005程序设计>」· ASPX 代码 · 共 21 行

ASPX
21
字号
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="URLAccess.aspx.vb" Inherits="URLAccess" %>

<!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>URL Access</title>
</head>
<body>
    <form id="form1" runat="server">
        <div>
            <a href="http://localhost/reportserver?/Chap21/reports/Tabular&rs:Command=Render" target="_self">
                Click here for the Tabular Report Sample</a><br />
            <br />
            <input type="button" value="Chart Report" onclick="document.all.reportframe.src='http://localhost/reportserver?/Chap21/reports/Chart&rs:Command=Render'" /><br />
            <br />
            <iframe id="reportframe" src="" width="100%" height="50%" style="height: 85%"></iframe>
        </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?