ASP编程:怎样秋完成输出拼音的依照汉字查询?或...
强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。汉字|拼音<%functiongetpychar(char)
tmp=65536+asc(char)
if(tmp>=45217andtmp<=45252)thengetpychar="A"
if(tmp>=45253andtmp<=45760)thengetpychar="B"
if(tmp>=47761andtmp<=46317)thengetpychar="C"
if(tmp>=46318andtmp<=46825)thengetpychar="D"
if(tmp>=46826andtmp<=47009)thengetpychar="E"
if(tmp>=47010andtmp<=47296)thengetpychar="F"
if(tmp>=47297andtmp<=47613)thengetpychar="G"
if(tmp>=47614andtmp<=48118)thengetpychar="H"
if(tmp>=48119andtmp<=49061)thengetpychar="J"
if(tmp>=49062andtmp<=49323)thengetpychar="K"
if(tmp>=49324andtmp<=49895)thengetpychar="L"
if(tmp>=49896andtmp<=50370)thengetpychar="M"
if(tmp>=50371andtmp<=50613)thengetpychar="N"
if(tmp>=50614andtmp<=50621)thengetpychar="O"
if(tmp>=50622andtmp<=50905)thengetpychar="P"
if(tmp>=50906andtmp<=51386)thengetpychar="Q"
if(tmp>=51387andtmp<=51445)thengetpychar="R"
if(tmp>=51446andtmp<=52217)thengetpychar="S"
if(tmp>=52218andtmp<=52697)thengetpychar="T"
if(tmp>=52698andtmp<=52979)thengetpychar="W"
if(tmp>=52980andtmp<=53640)thengetpychar="X"
if(tmp>=53689andtmp<=54480)thengetpychar="Y"
if(tmp>=54481andtmp<=52289)thengetpychar="Z"
endfunction
functiongetpy(str)
fori=1tolen(str)
getpy=getpy&getpychar(mid(str,i,1))
next
endfunction
%>
</p>国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了 以HTML语言整合(HTML负责界面上,ASP则负责功能上)形成一个B/S(浏览器/服务器)模式的网页程序。 它可通过内置的组件实现更强大的功能,如使用A-DO可以轻松地访问数据库。 在平时的学习过程中要注意现学现用,注重运用,在掌握了一定的基础知识后,我们可以尝试做一些网页,也许在开始的时候我们可能会遇到很多问题,比如说如何很好的构建基本框架。 多看多学多思。多看一些关于ASP的书籍,一方面可以扩展知识面一方面可以鉴借别人是如何掌握、运用ASP的;多学善于关注别人,向同学老师多多学习,不论知识的大小;多思则是要将学到的知识灵活运用。 跟学别的语言一样,先掌握变量,流程控制语句(就是ifwhileselect)等,函数/过程,数组 我可以结合自己的经验大致给你说一说,希望对你有所帮助,少走些弯路。 我们必须明确一个大方向,不要只是停留在因为学而去学,我们应有方向应有目标. ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。 我想问如何掌握学习节奏(先学什么再学什么)最好详细点? Response:从字面上讲是“响应”,因此这个是服务端向客户端发送东西的,例如Response.Write 没有坚实的理论做基础,那么我们连踏入社会第一步的资本都没有,特别对于计算机专业的学生学好专业知识是置关重要的。在这里我侧重讲一下如何学习ASP,从平时的学习过程中。 下载一个源代码,然后再下载一个VBScript帮助,在源代码中遇到不认识的函数或是其他什么程序,都可以查帮助进行解决,这样学习效率很高。
页:
[1]