asp服务端 VS JS客户端
请大家帮忙比较两个的速度.本地测试多次,似乎不相上下,都是10秒.
VBScript code:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>服务端生成表格</title>
<style type="text/css">
<!--
body,td,th {
color: #000000; margin:0px; padding:0px
}
body {
background-color: #FFFFFF; font-size:5px
}
table{ width:1200px; border:none; background-color:#CCC}
td{ width:15px; height:15px; border:none; overflow:hidden; text-align:center}
-->
</style></head>
<body>
<table border="0" align="center" cellpadding="0" cellspacing="0">
<%for j=0 to 999%> <tr><%for i=1 to 100%>
<td style="background-color:#<%=right("00000" & Hex(yanse),6)%>" id='td<%=j*100+i%>'><%=i%></td><%yanse=yanse+20480:next%>
</tr>
<%next%>
</table>
</body>
</html>
HTML code
Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHigh
相关问答:
调整了这里,那里出问题。
有没有什么好的方法,像调整对话框一样????
找个专门做页面的
在dreamweaver里调。。。也可以直接控制HTML代码
确实痛苦 感同身受呀
哈哈 坚决路过。
用DW吧,VS搞设计 ......
在asp里怎么调用java写的webservice方法,有很多方法
- <message name="RtPnrIn">
<part name="bstrPnrNO" type="s:string" />
<part name ......
各位大虾,我做了一个ASP得通讯录,但是除了查询功能好像其他都有问题,其中添加功能如下,能指导一下我哪里出错了吗?
<html>
<head>
<title>无标题文档</title>
</head>
<b ......
问题是这样的,现在有一个工资表,是EXCEL的,我要把它导入ACCESS,因为 要查询每个人的工资,根据不同的编号可以查询到相对的人,
用ASP 怎么将EXCEL导入到ACCESS,而且每月都有不同的表,
引用
其实就是把EXCEL当成数 ......
3个radioButton
一个Button
一个label
C# code:
protected void Button1_Click(object sender, EventArgs e)
{
string str = null;
RadioButton rdo=(RadioButton)sender;
......