易截截图软件、单文件、免安装、纯绿色、仅160KB

asp中引用js语句?

  哪位兄弟能帮我分析下列语句,我觉得主要是response.write("setCursorPos();")有问题,小弟万分感谢...........
<form name="wer">
<input type="text" name="tt"  >
</form>
<%
  response.write" <script language='javascript'>"
response.write("setCursorPos();")
    response.write" </script>"

%>
<script language="javascript">
setCursorPos();
function setCursorPos() {

var txtRange = document.wer.tt.createTextRange();
txtRange.moveStart( "character",document.wer.tt.value.length);
txtRange.moveEnd( "character", 0 );
txtRange.select();
}
没问题,是效果没有吧
你把txtRange.moveStart( "character",document.wer.tt.value.length); 这句去掉试试

调整一下顺序:
HTML code:

<form name="wer">
<input type="text" name="tt" value="abc" >
</form>
<script language="javascript">
function setCursorPos() {
var txtRange = document.wer.tt.createTextRange();
txtRange.moveStart( "character", 0);
txtRange.moveEnd( "character", documen


相关问答:

asp初学问题。response找不到

<%@language="vbscript"%>
<%option explicit%>
<html>
<head> <title>xxx </title> </head>
<script language=vbs>
'注意变量 ......

一段asp转php

<%if request.QueryString("start") <>"" then%>
<%if cint(start)>0 then%>
<a href="search.asp?q= <%=q%>&start= <%if request.Query ......

我是一名ASP处学者!想请帮忙推荐一本ASP好的书籍

我原本是学jsp的可找了一个ASP的公司!我要重新学习! 学习ASP! 希望大家推荐一本好书给我谢谢
<ASP3.0高级编程> 网上有电子版的

发现网上asp信息时最多的 比其他的都多好多

yun

找本有应用事例的A ......

asp后台登陆问题

我帮学校做了一个站.

在校园网的情况下,能够登陆成功,后台帐号都能通过,进入后台

但是在外网AD的情况下,能够登陆后台的页面,页面是ASP文件.
但是输入帐号和密码的时候,网页运行很久都 ......

asp升级到asp.net,好多结构都不知道如何转换

asp下面,当要根据不同的权限显示一些功能按钮的话会写成
<%
if 权限=1 then
%>
<input type="submit" name="Submit" value="提交" />
<%
end i ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号