搜索
编程论坛
→
WEB开发
→
『 ASP技术论坛 』
→ msgbox 无权限
标题:
msgbox 无权限
只看楼主
peswe
等 级:
新手上路
帖 子:197
专家分:0
注 册:2006-11-22
楼主
问题点数:0 回复次数:9
msgbox 无权限
刚学asp,好多郁闷的东西哦!~
为什么msgbox 在<% %>中就没权限?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<%
msgbox "hello world!~"
%>
</body>
</html>
搜索更多相关主题的帖子:
msgbox
权限
文档
asp
2008-04-10 22:15
makebest
等 级:
蝙蝠侠
威 望:
3
帖 子:658
专家分:962
注 册:2005-3-17
第
2
楼
得分:0
<%%> 中的代码是设计在服务器上运行的,属于后台程序,是没有界面和无人值守的,如果弹出了窗口没有人点确定,服务器不是挂了吗?
2008-04-10 23:24
zmhdxy
等 级:
新手上路
帖 子:452
专家分:0
注 册:2007-9-27
第
3
楼
得分:0
<%%>要有iis才可以运行
不过直接用vbscript脚本 也可以象js一样 用于前台,这样msgbox就可以用了
2008-04-10 23:35
madpbpl
等 级:
贵宾
威 望:
11
帖 子:2876
专家分:244
注 册:2007-4-5
第
4
楼
得分:0
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<script language="vbscript">
msgbox "hello world!~"
</script>
</body>
</html>
2008-04-11 02:06
peswe
等 级:
新手上路
帖 子:197
专家分:0
注 册:2006-11-22
第
5
楼
得分:0
谢谢,学习了!~
C斗士~~~fighting!!!!
2008-04-11 13:18
peswe
等 级:
新手上路
帖 子:197
专家分:0
注 册:2006-11-22
第
6
楼
得分:0
这样怎么也不可以呢,说是有语法错误!~
<body>
<table>
<%
response.write "<script language='vbscript'> msgbox('hello,world!~') </script>"
%>
</table>
</body>
</html>
C斗士~~~fighting!!!!
2008-04-11 13:37
yms123
等 级:
版主
威 望:
209
帖 子:12488
专家分:19042
注 册:2004-7-17
第
7
楼
得分:0
<body>
<table>
<%
response.write "<script language='vbscript'> msgbox('hello,world!~') </script>"
%>
</table>
</body>
</html>
VBScript中好像'单引号代表不了字符串,可以使用javascript同样函数来实现
<body>
<table>
<%
response.write "<script language='javascript'> alert('hello,world!~'); </script>"
%>
</table>
</body>
</html>
2008-04-11 17:12
tianyu123
等 级:
新手上路
威 望:
2
帖 子:576
专家分:0
注 册:2007-8-26
第
8
楼
得分:0
MsgBox 是客户端函数,不能在服务端调用
InputBox 也是客户端函数
改变一切,须从改变观念开始!
2008-04-11 17:44
peswe
等 级:
新手上路
帖 子:197
专家分:0
注 册:2006-11-22
第
9
楼
得分:0
谢谢各位的指点,原来换成javascript就可以了!~·
C斗士~~~fighting!!!!
2008-04-11 18:58
china25qd
等 级:
新手上路
帖 子:161
专家分:0
注 册:2007-9-6
第
10
楼
得分:0
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
<% response.write "<script language='vbscript'>
msgbox "hello world!" %>
</body>
</html>
抱膝怀天下 闲坐观四海
2008-04-11 20:46
10
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-208309-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.812273 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved