由买买提看人间百态

topics

全部话题 - 话题: asp
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
s***i
发帖数: 135
1
来自主题: BuildingWeb版 - 请问ASP在UNIX下能否运行?谢谢

能否借用某种工具,不是有工具可使UNIX界面象NT吗?
可怜我的ASP主页,那可费了我不少工夫啊。
j****e
发帖数: 1
2
来自主题: BuildingWeb版 - 请问ASP在UNIX下能否运行?谢谢
早就听说Apache在做工作使得ASP能够在它上面跑,不知道怎么样了??!
r***t
发帖数: 78
3
来自主题: BuildingWeb版 - 紧急救助:ASP安全问题
如果要用ASP实现比如online transaction时,要使用安全机制,有
什么方法?
apache和java web server都有security port, apache有openssl等
,那么
MS的IIS5.0有没有security port呢?或者有什么其他方法?
谢谢,谢谢!
h****n
发帖数: 16
4
来自主题: BuildingWeb版 - 用ASP制作网页的几个问题
I made an application with ASP to maintain students' courses
and scores. I met the
folloing problems:
1. How to display a reminding page automotically when
session expired?
2. How can I realize that new user can not see some previous
pages by using "Back"
button after the old user has logged off?
w*****o
发帖数: 92
5
来自主题: BuildingWeb版 - Free Webspace supportting ASp or CGI
Who can recommend some free websites for personal webpage
that can support CGI or ASP? I mean, the web server should
be in China mainland!
Thanks
f****r
发帖数: 709
6
来自主题: BuildingWeb版 - [转载] 请教ASP高手
【 以下文字转载自 THU 讨论区,原文如下 】
发信人: FangEr (FangEr), 信区: THU
标 题: 请教ASP高手
发信站: The unknown SPACE (Fri Nov 10 21:38:10 2000) WWW-POST
小弟最近在学写网站,遇到一个问题请教
我想写一个用户可以Login,logout的网站,打算用Session来记录用
户的信息
想在Session_OnEnd这个事件里消灭用户在server上创建的文件,
我用Session.Abandon来fire Session_OnEnd Event,不知道什么原因
总是不执行
Session_OnEnd procedure中的代码
当然我的Session_OnEnd是写在Global.asa中的,
我用的是VBScript
请问高手怎样才能让Session.Abandon Fire Session_OnEnd event
谢了
d****g
发帖数: 1
7
来自主题: BuildingWeb版 - 求教关于ASP中的数据库连接问题
在ASP中,我用无DSN方式连接数据库. 昨天我成功了,
但是今天再使用, 却提示Unable to load ole32.dll.
我找了一下, 这个文件就在c:\windows\system下面, 这是怎么回事
呢?
p******e
发帖数: 31
8
来自主题: BuildingWeb版 - help about sql connection with ASP
我想用ASP添加数据库record时,总是报错。
请问是怎么回事? 谢谢!
我的数据库并没有设为只读啊。
程序如下:

<%
dim db
dim strCon
db="access"
strCon="DRIVER={Microsoft Access Driver (*.mdb)};
DBQ=c:/Inetpub/wwwroot/name/name.mdb"
set db=Server.CreateObject("ADODB.Connection")
db.open strCon
%>
set res=Server.CreateObject("ADODB.Recordset")
res.Open "select * from
user",strCon,adOpenKeyset,adLockOptimistic
res.AddNew
res("pass")=pass
res("fname")=fname
res("lname")=lname
if city<>"" then
res("city")=city
.......
c****u
发帖数: 5
9
来自主题: BuildingWeb版 - A question on ASP
I got a problem when i write the asp code in vb script.
Like in C++:
if a = b
break;
I am wondering how to change into vb script? Is there anything
in vb script which can take place the "break" here?
Thanks a lot!
f***h
发帖数: 2
10
来自主题: BuildingWeb版 - Q: ASP 里能够不用 ODBC 访问数据库吗
ASP 是可以让我用,不过 admin 说用 ADO 就行
搜索 udl 看到了下面的文章:
第二种方法里的 database name 是什么呢,不会是 table name 吧

是不是每个 SQL Server 安装时都要指定一个 name?
p*****e
发帖数: 58
11
来自主题: BuildingWeb版 - Q: ASP 里能够不用 ODBC 访问数据库吗

If you do not have ODBC on your machine, you need ADO
Provider, a software component for accessing your DB server.
ADO provider's role is similar to ODBC. They provide
uniform programming interface to access various db servers.
There are provider for MS SQL server, provider for Oracle,
... As an ASP developer you only need to find the right
provider for your DB, and make a connection string using
that provider and info about your DB, then you don't care
what DB you are talking to. If you have O
N**e
发帖数: 158
12
来自主题: BuildingWeb版 - question about ASP
ASP is at server side and can't do that. You may need to change your design
to use diff. names for buttons or assign ids to buttons. If you stick to
tabindex, maybe client JS can help you.
p******e
发帖数: 31
13
来自主题: BuildingWeb版 - help about ASP
我正在做一个ASP的online 考试中心。
可是有一个问题请教各位,
我用form的input为radio的方式选择答案,举例形式如下:
1. 120+321=? @ A:111 @ B:222 @ C:441 @ D:552
2. 120×321=? @ A:188 @ B:6555 @ C:4410 @
D:552**
................
可是怎么实现按选择查询数据中所存答案,然后计分呢?
我用request.form 传送的值总有问题。
请各位大虾帮忙给点建议,谢谢谢谢
a****e
发帖数: 7
14
来自主题: BuildingWeb版 - help about ASP
你可以用动态的名字啊.
比如说:
定义Button1, Button2, Button3, Button4
你可以这样取得变量
<%
for i = 1 to 4
str = "Button" & i
something = request(str)
Next
%>
赋值的方法也是如此
我现在也在用ASP做东西, 也遇到一些动态显示的问题, 不知道这些
能不能帮你.
p******e
发帖数: 31
15
来自主题: BuildingWeb版 - help about ASP
谢谢apogee!, 去哪里当那本asp unleashed 呢?:)
c***t
发帖数: 16
16
来自主题: BuildingWeb版 - "asp" weak question
OS是NT4+service pack6,IE5.5; 在D;\InetPub\wwwroot\tutorial
下创建文件example1.asp
但在IE中打开时http://xxx.xxx.xxx/tutorial/example1.aps总弹
出保存的窗口,无法打开该文件,请问是哪里的设置问题?
N**e
发帖数: 158
17
来自主题: BuildingWeb版 - "asp" weak question
Make sure you installed ASP scripting engine, you can check IIS setting to see
that
d****i
发帖数: 16
18
来自主题: BuildingWeb版 - what's wrong with the asp math function?
what's wrong with the asp math function?
Percent = Math.round(10.999999)
it doesnot work.
e*****n
发帖数: 11
19
Like one small asp file that can automatically invoke
software, like notepad at the server side. Anyone can write
such small file for me? Very appreciate!!!
N**e
发帖数: 158
20
It's not that easy. Since ASP calls COM as a backend service, a simple shell
call will start the program(e.g. notepad), but the program can only run as
a service with no windows... If you want to run graphical programs you need to
do more.
e*****n
发帖数: 11
21

Really? The is your .dll look likes following(I did it in
VB)?
Public Sub trigger()
Dim RetVal
RetVal = Shell("c:\windows\write.exe",1)
End Sub
Also, do you use asp page to try to trigger?
Thanks
h*****l
发帖数: 184
22
我用ASP处理ACCESS数据库。
但运行INSERT时,出来错:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access Driver] Operation must use
an updateable query.
百思不得其解, 请帮我看看, 错误出在SQLInsert那句上:
Set corConn = Server.CreateObject("ADODB.Connection")
dbpath = Server.mappath("fpdb\mbaalumni.mdb")
corConn.open "driver={Microsoft Access Driver (*.mdb)}; dbq=
"&dbpath&""
RS = Server.CreateObject("ADODB.Recordset")
SQLSel = "Select * from mbaalumni Where fname = '"&
Request.Form("fname")
h*****h
发帖数: 1
23
我用FRONTPAGE编辑,PREVIEW的时候都可以看见背景和网页上的图片
,不知道为什么,
一到IE下浏览,什么图片都没了。
我是在WINDOWS 2000 PROFESSIONAL/IIS5.0下操作。
我都快要疯了,是不是我还要装其他的什么辅助软件?我也从没见别
人有过这样的问题,
网上的那些ASP网页不都是有图片的吗?
大家快帮帮我吧!!
j****y
发帖数: 11
24
来自主题: BuildingWeb版 - 如何下载ASP源代码?
在http://..上可以看到asp文件名和文件的大小,但是下载后文件名
虽同但文件大小不同。只能下载到其在网页上显示的内容,无法看
到源代码。
请问该如何下载才能看到源代码?
谢谢!
D***u
发帖数: 189
25
来自主题: BuildingWeb版 - Why can not show asp page?
I tried to run some asp page on my NT server. I put the file under
/intpub/wwroot. But when I tried to browse it, no response. I mean when I use
response to show some system information. No response. I don't know what
problem. Thank u.
h****r
发帖数: 2056
26
来自主题: BuildingWeb版 - ASP certification
does ASP have some certifications? so I can go to get one
h****r
发帖数: 2056
27
来自主题: BuildingWeb版 - Pull down menu and ASP
any one can give me an example of how to connect a pull down menu with
database by ASP.
y****i
发帖数: 5690
28
来自主题: BuildingWeb版 - ASP books/tutorials
Searched and found a few but they don't seem to be good ya. Usually when I
search sth, google gives me satisfactory results. But this time I didn't find
something I feel good.
Anyway, I want to buy a good ASP book. Any suggestions on this?
w*****o
发帖数: 92
29
来自主题: BuildingWeb版 - 菜鸟问题!如何让server 支持ASP?
可以,我以前在一个NT的机子上先装sambar,然后为了调asp,又
装了NT option package里的pws,两者都能工作
N**e
发帖数: 158
30
来自主题: BuildingWeb版 - ASP problem in IIS 5.0
Check your asp. If you script has infinite loop in it, it will never finish and
crush the IIS
w*****o
发帖数: 92
31
来自主题: BuildingWeb版 - ASP problem in IIS 5.0
问题是他们的IIS都还可以,run过其他的Asp文件
N**e
发帖数: 158
32
来自主题: BuildingWeb版 - ASP problem in IIS 5.0
If you think your ASP is fine, just get VS.NET and debug it.
i******i
发帖数: 54
33
来自主题: BuildingWeb版 - ASP problem in IIS 5.0
对,先找asp 文件的问题
h*****l
发帖数: 184
34
【 以下文字转载自 Internet 讨论区,原文如下 】
发信人: hanibal (汉尼拔), 信区: Internet
标 题: ASP里那个返回访问者screen resolution的变量是什么呀?
发信站: The unknown SPACE (Sun Jun 30 09:08:43 2002) WWW-POST
我把request.servervariables的所有属性的
读了一遍, 也没找到.
谢谢.
a***e
发帖数: 1140
35
来自主题: BuildingWeb版 - Where to find open ASP source code?
I need to add a user bulletin board and some hidden counters to a website.
This kind of work must have been done by thousands of people. Do you know
where I could find some open source code, either as a reference or use
directly?
I am new to ASP/PHP. Any suggestions is highly appreciated.
Thanks in advance!
i******i
发帖数: 54
36
怎么可能不行?
link

window.open("detail.asp?email="+email+"","my_new_window","toolbar=yes,location
=yes,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhist
s**o
发帖数: 584
37
windows? ren *.htm *.asp
b*******s
发帖数: 470
38
don't u think it's the same, maybe even need more job, to create the batch
file as execute those commands one by one...
don't know if "ren *.htm *.asp /s" works...
h*****l
发帖数: 184
39
【 以下文字转载自 shopping 讨论区,原文如下 】
发信人: hanibal (汉尼拔), 信区: shopping
标 题: ASP的script function里, 可以query database吗?
发信站: The unknown SPACE (Sun Jul 28 20:54:44 2002) WWW-POST
比如我要做的工作是, 当人们选了state以后, 后面county选项的下拉选单就自动列出
该州的所有county供选择.
一般这种cascading的选择, 都是用function, function里面用array列出所有选项. 可我
的项目显然不能够让所有的州的county都列在function里, 而是应该储存在数据库里. 应
该把选择的州作为参数, 送给function, 让function去query database, 在把county
array返回.
可是我们可以在vbscript或javascript里建立数据库连接, query database 吗?
谁能指点一二, 谢谢了.
m**h
发帖数: 22
40
就是http://127.0.0.1/localstart.asp
的帐号和密码 谢谢!
g*******a
发帖数: 1383
41
来自主题: BuildingWeb版 - custom controls on www.asp.net
hi all,
i found a nice progress bar control on asp.net website
but how can i find its own control for it? i mean
the aspDS (named after the company Dusor) so i can
include it? thanks
g*******a
发帖数: 1383
42
来自主题: BuildingWeb版 - [转载] HELP: ASP.NET DEBUG ERROR
【 以下文字转载自 Programming 讨论区 】
【 原文由 gogowanda 所发表 】
hi comrades,
need some advices on ASP.NET debug error
"unable to debug web server, diasble future debug...?"
i looked up in MSDN and it says the problem is related
to IIS and reset would fix it -- but it didn't fix it.
so i'm wondering if you guys have any ideas i can
try on my project. i'd really appreciate any help.
thanks!
f***o
发帖数: 31
43
来自主题: BuildingWeb版 - [转载] JSP是不是比ASP强大?
same same, actually jsp followed asp, and inherited the same problems.
it's more subject to the choice of java/.net
v****r
发帖数: 158
44
来自主题: BuildingWeb版 - [转载] JSP是不是比ASP强大?
it seems that jsp is more safe than asp.
h*****l
发帖数: 184
45
来自主题: BuildingWeb版 - [转载] ASP可以用Oracle为数据库吗?
【 以下文字转载自 Database 讨论区,原文如下 】
发信人: hanibal (汉尼拔), 信区: Database
标 题: ASP可以用Oracle为数据库吗?
发信站: The unknown SPACE (Tue Oct 22 17:17:22 2002) WWW-POST
过去用的都是ACCESS, SQL Server.
不知道Oracle可不可以.
谢谢!
c********r
发帖数: 11
46
来自主题: BuildingWeb版 - ASP.NET 高手请进!


from IIS, classicasp.aspx is there and I do have source code there. It
contains some simple VBScritp. If I change classicasp.aspx to classic.asp.
everything is OK. So why IIS cannot access aspx file in the virusual
directory?
c********r
发帖数: 11
47
来自主题: BuildingWeb版 - ASP.NET 高手请进!
问题暂时解决了. 偶将到 ClassicASP.aspx 放到 C:\Inetpub\wwwroot, everything is
OK. 好象 aspx 文件只能放在这个 directory 下才 work, 谁知道为什么?

ASP
Administrators
right
IIS
C****n
发帖数: 2324
48
来自主题: BuildingWeb版 - ASP.NET 高手请进!
ASPNET user can't access your directory other than inetpub\wwwroot.
Change the access right for ASPNET. Or make your directory accessible to
ASPNET.
(Go to account management to find out about user ASPNET)

is
file,
limited
helpful
classic.asp.
k****h
发帖数: 27
49
来自主题: BuildingWeb版 - how to out put tabulated/formatted text in ASP
I have some trouble to output the text by ASP.
For example: I want to output a text table:
OrerId OrderItems Price
123 2 150
How do I make tab work? I only want it be text, not html.
g*******a
发帖数: 1383
50
【 以下文字转载自 Programming 讨论区 】
【 原文由 gogowanda 所发表 】
各位武林高好,
我现在遇到一个ASP.NET的问题,是这样的
我要做的是一个CUBIC SHARING系统,用户LOGON之后能看到当前的FLOORPLAN
这个FLOORPLAN是个BITMAP,上面有整个楼层的布局,用户可以看到各个CUBE,
红色表示已经RESERVED,绿色表示可以使用,现在-
问题是怎么能生成这样一个图呢?我有一个FIXED的FLOORPLAN,要在这个基础
上根据数据库信息,把某些CUBE变成红色某些绿色,如果用户点绿色的就会给
导入注册页面,如果红色的就没反映。
我查了MSDN,上面只找到如何制作IMAGEBUTTON,而我需要能不断变化的大IMAGE
上面有许多IMAGEBUTTON
请各位指教,多谢!
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)