⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 asp_procedures.asp@output=print

📁 W3Schools tutorial..web designing
💻 ASP@OUTPUT=PRINT
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>ASP Procedures</title>
 
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Keywords" content="xml,tutorial,html,dhtml,css,xsl,xhtml,javascript,asp,ado,vbscript,dom,sql,colors,soap,php,authoring,programming,training,learning,beginner's guide,primer,lessons,school,howto,reference,examples,samples,source code,tags,demos,tips,links,FAQ,tag list,forms,frames,color table,w3c,cascading style sheets,active server pages,dynamic html,internet,database,development,Web building,Webmaster,html guide" />

<meta name="Description" content="Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building." />

<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "../../https@ssl./default.htm" : "../../www./default.htm");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3855518-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>

</head>
<body>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

<h1>ASP Procedures</h1>
<a href="asp_variables.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="asp_inputforms.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>
<hr />

<p class="intro">In ASP you can call a JavaScript procedure from a VBScript and vice versa. </p>
<hr />

<h2>Examples </h2>
<p><a target="_blank" href="showasp.asp@filename=demo_vbproc">Call a procedure using VBScript</a><br />
How to call a VBScript procedure from ASP.</p>
<p><a target="_blank" href="showasp.asp@filename=demo_jsproc">Call a procedure using JavaScript</a><br />
How to call a JavaScript procedure from ASP.</p>
<p><a target="_blank" href="showasp.asp@filename=demo_vbproc2">Call procedures using VBScript</a><br />
How to call both a JavaScript procedure and a VBScript procedure in an ASP file.</p>
<hr />

<h2>Procedures </h2>


<p>The ASP source code can contain procedures and functions: </p>


<table width="100%" border="1" class="ex" cellspacing="0"><tr><td>
<pre>&lt;html&gt;
&lt;head&gt;
&lt;%
sub vbproc(num1,num2)
response.write(num1*num2)
end sub
%&gt;
&lt;/head&gt;</pre>
<pre>&lt;body&gt;
&lt;p&gt;Result: &lt;%call vbproc(3,4)%&gt;&lt;/p&gt;
&lt;/body&gt;</pre>
<pre>&lt;/html&gt;</pre>
</td></tr></table>


<p>Insert the &lt;%@ language=&quot;<i>language</i>&quot; %&gt; line above the
&lt;html&gt; tag to write procedures or functions in another scripting language
than 
default: </p>


<table width="100%" border="1" class="ex" cellspacing="0"><tr><td>
<pre>&lt;%@ language=&quot;javascript&quot; %&gt;
&lt;html&gt;
&lt;head&gt;
&lt;%
function jsproc(num1,num2)
{
Response.Write(num1*num2)
}
%&gt;
&lt;/head&gt;</pre>
<pre>&lt;body&gt;
&lt;p&gt;Result: &lt;%jsproc(3,4)%&gt;&lt;/p&gt;
&lt;/body&gt;</pre>
<pre>&lt;/html&gt;</pre>
</td></tr></table>
<br />
<hr />

<h2>Differences Between VBScript and JavaScript</h2>
<p>When calling a VBScript or a JavaScript procedure from an ASP file written in VBScript, you can use the
&quot;call&quot; keyword followed by the procedure name. If
a procedure requires
parameters, the parameter list must be enclosed in parentheses when using the
&quot;call&quot; keyword. If you omit the &quot;call&quot; keyword, the
parameter list must not be enclosed in parentheses. If the procedure has no
parameters, the parentheses are optional. </p>
<p>When calling a JavaScript or a VBScript procedure from an ASP file written in
JavaScript,
always use parentheses after the procedure name.&nbsp; </p>
<hr />

<a href="asp_variables.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="asp_inputforms.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

</body>
</html>

⌨️ 快捷键说明

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