再见西城 发表于 2015-1-16 23:12:58

ASP网站制作之完成可静态改动宽度的表格复杂办法

由于ASP提供的是一对多的服务,所以用户的一些特殊需求很难得到满足。静态<head>
<%
天生css类,用于设置表格
cssClassName="t"
cssClassNameMaxID=400
cssClassNameMinID=1
minWidth=50
Response.Write"<style>"
Response.Writevbcrlf
fori=cssClassNameMinIDtocssClassNameMaxID
Response.Write"."&cssClassName&i
Response.Write"{cursor:default;font-size:13;color:ff0000;width:"&(minWidth+i)&"}"
Response.Writevbcrlf
next
Response.Write"</style>"
%>
</head>
<bodyonmouseup="mUp();tmUp();">
<tableborder="0"cellpadding="0"id="table1"bgcolor=f0f0f0cellspacing="0">
<trbgcolor=ddddddheight=23>
<tdstyle=border-bottom:1solid#707070background="http://blog.csdn.net/images/blog_csdn_net/precipitant/36234/o_h.gif"class="<%=cssClassName&"100"%>">保镳</td>
<tdstyle=border-bottom:1solid#707070width=5id="a1"align="center"onmousedown="mDown(1)"onmousemove="mMove(1);"onmouseup="mUp()"onmou搜索引擎优化ut="mOut();"></td>
<tdstyle=border-bottom:1solid#707070background="http://blog.csdn.net/images/blog_csdn_net/precipitant/36234/o_h.gif"align=centerclass="<%=cssClassName&"100"%>">司机</td>
<tdstyle=border-bottom:1solid#707070width=5id="a5"onmousedown="tmDown()"onmousemove="tmMove();"onmouseup="tmUp()"onmou搜索引擎优化ut="tmOut();"><imgsrc=http://www.163design.net/a/s/"http://blog.csdn.net/images/blog_csdn_net/precipitant/36234/o_fgf.gif"border=0height=23></td>
</tr>
<%
rcount=1
fori=1to10
rcount=rcount+1
%>
<trheight=23>
<tdstyle=border-bottom:1solid#e0e0e0class="<%=cssClassName&"100"%>">
孙悟空
</td>
<tdstyle=border-bottom:1solid#e0e0e0></td>
<tdstyle=border-bottom:1solid#e0e0e0class="<%=cssClassName&"100"%>"align=center>
猪八戒
</td>
<tdstyle=border-bottom:1solid#e0e0e0></td>
<tdstyle=border-bottom:1solid#e0e0e0class="<%=cssClassName&"100"%>"align=center>
沙僧人
</td>
<tdstyle=border-bottom:1solid#e0e0e0></td>
</tr>
<%next%>
</table>
</body>
<scriptlanguage=javascript>


varminWidth="<%=minWdith%>";
varcNameRoot="<%=cssClassName%>";
varrowCount="<%=rcount%>";

varmYes="0";
varmLeft;
varleftID0;
varrightID0;
varmisAdjust=1.2//用于调剂偏差

vartmYes="0";


//界说拖沓时鼠标指针款式
varie6;
ie6=(window.navigator.appVersion.indexOf("MSIE6.")!=0)
if(ie6)
{
document.getElementById("a1").style.cursor=col-resize;
document.getElementById("a3").style.cursor=col-resize;
}
else
{
document.getElementById("a1").style.cursor=w-resize;
document.getElementById("a3").style.cursor=w-resize;
}
document.getElementById("a5").style.cursor=w-resize;


functionmOut()
{
mYes="0"
}

functionmUp()
{
mYes="0"
}

function</p>楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。

仓酷云 发表于 2015-1-17 19:46:10

ASP也是这几种脚本语言中最简单易学的开发语言。但ASP也是这几种语言中唯一的一个不能很好支持跨平台的语言。  因为ASP脚本语言非常简单,因此其代码也简单易懂,结合HTML代码,可快速地完成网站的应用程序。

山那边是海 发表于 2015-1-28 20:52:08

我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。

再见西城 发表于 2015-2-5 18:25:15

Session:这个存储跟客户端会话过程的数据,默认20分钟失效

愤怒的大鸟 发表于 2015-2-13 02:14:26

ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:

简单生活 发表于 2015-3-3 12:24:55

兴趣爱好,那么你无须学编程,申请一个域名和空间,在网上下载一些免费开源的CMS系统,你不用改代码,只须熟悉它们的后台操作,像office一样简单方便,很快就能建一个站点,很多站长都是这样做的

第二个灵魂 发表于 2015-3-11 11:03:04

另外因为asp需要使用组件,所以了解一点组件的知识(ADODB也是组件)

老尸 发表于 2015-3-18 07:22:06

在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。

莫相离 发表于 2015-3-25 13:18:07

那么,ASP.Net有哪些改进呢?
页: [1]
查看完整版本: ASP网站制作之完成可静态改动宽度的表格复杂办法