j*****o 发帖数: 320 | 1 不用的时候到处都能看见,
真要用了,就找不到了。
谢谢。 |
c***h 发帖数: 51 | 2 javascript:history.back()
【在 j*****o 的大作中提到】 : 不用的时候到处都能看见, : 真要用了,就找不到了。 : 谢谢。
|
j*****o 发帖数: 320 | 3 在Runat=server的VBScript里,该怎么操作浏览器呢?
Response.Redirect好像只能给URL,不能有back/forward
这些动作。
谢谢。
【在 c***h 的大作中提到】 : javascript:history.back()
|
g*s 发帖数: 2277 | 4
it should have some function to get previous url.then redirect to previous url.
【在 j*****o 的大作中提到】 : 在Runat=server的VBScript里,该怎么操作浏览器呢? : Response.Redirect好像只能给URL,不能有back/forward : 这些动作。 : 谢谢。
|
m*****e 发帖数: 126 | 5 history.back() should work. You can send a client side
javascript back to the browser
【在 j*****o 的大作中提到】 : 在Runat=server的VBScript里,该怎么操作浏览器呢? : Response.Redirect好像只能给URL,不能有back/forward : 这些动作。 : 谢谢。
|
j*****o 发帖数: 320 | 6 不会弄耶。
Response.Redirect("javascript:history.back()") '不行
Response.Write("")
谢谢
【在 m*****e 的大作中提到】 : history.back() should work. You can send a client side : javascript back to the browser
|
s*i 发帖数: 5025 | 7 Just embed your javascripts in your html file.
【在 j*****o 的大作中提到】 : 不会弄耶。 : Response.Redirect("javascript:history.back()") '不行 : Response.Write("") : 谢谢
|
s*i 发帖数: 5025 | 8
Just add embed this in your html file.
【在 s*i 的大作中提到】 : Just embed your javascripts in your html file.
|
j*****o 发帖数: 320 | 9 我想让一个asp文件在检查输入内容后,自动返回前一页。
如果嵌入您的这句话,好像要手动点才行吧?
谢谢。
【在 s*i 的大作中提到】 : : Just add embed this in your html file. :
|
j*****o 发帖数: 320 | 10 谢谢。
但是还有问题:
Microsoft VBScript runtime error '800a01b6'
Object doesn't support this property or method: 'request.getPreviousURL'
因为前面页面有个form, 如果不是back的话,这张表要重填。
我想至少可以用cookie来做临时存储,但是应该有更简单的办法。
【在 g*s 的大作中提到】 : : it should have some function to get previous url.then redirect to previous url.
|
g*s 发帖数: 2277 | 11 generate temp html and refresh in 0 sec to javascript:history.go(-2)
or Response.Redirect(Request.getPreviousURL())(not sure exact function name
in your server technology)
【在 j*****o 的大作中提到】 : 我想让一个asp文件在检查输入内容后,自动返回前一页。 : 如果嵌入您的这句话,好像要手动点才行吧? : 谢谢。
|
g*s 发帖数: 2277 | 12
check reference to find method with the same functionality.
【在 j*****o 的大作中提到】 : 谢谢。 : 但是还有问题: : Microsoft VBScript runtime error '800a01b6' : Object doesn't support this property or method: 'request.getPreviousURL' : 因为前面页面有个form, 如果不是back的话,这张表要重填。 : 我想至少可以用cookie来做临时存储,但是应该有更简单的办法。
|
v**m 发帖数: 242 | 13 how about nextlink object
【在 j*****o 的大作中提到】 : 谢谢。 : 但是还有问题: : Microsoft VBScript runtime error '800a01b6' : Object doesn't support this property or method: 'request.getPreviousURL' : 因为前面页面有个form, 如果不是back的话,这张表要重填。 : 我想至少可以用cookie来做临时存储,但是应该有更简单的办法。
|
h***u 发帖数: 136 | 14 Response.Write("")
【在 j*****o 的大作中提到】 : 谢谢。 : 但是还有问题: : Microsoft VBScript runtime error '800a01b6' : Object doesn't support this property or method: 'request.getPreviousURL' : 因为前面页面有个form, 如果不是back的话,这张表要重填。 : 我想至少可以用cookie来做临时存储,但是应该有更简单的办法。
|