English 中文(简体)
我怎么能确保,用户只有在从具体职能转向特定职能的情况下才能访问我的网页?
原标题:How can I make sure that a user visits a page of my site only if he s redirected from a specific function?

在我的网页上,Im使用javascript功能

<script> 
function redirect(){ 
    window.location="hurray.php";
}
</script>

将这一职能从以下线上调。

<input id="search_box" name="textbox" type="text" size="50" maxlength="100" onkeypress="redirect()" />

我现在要保证,这页是hur。 仅从这一行动中访问了营地。 如果我把URL直接打到hur光页上,我就不应访问这一页,而是把它转往上页。

最佳回答

发挥非洲宇宙航空研究开发机构的作用,在会议上形成一个变量。 当非洲宇宙航空研究开发机构打电话回来后,用户又转向这个网页,并核对会议变量。 如果您不希望用户能够再次访问本届会议,你可以删除。

问题回答

我不认为,你不能单靠 j子这样做。

你们需要在服务器上拦截并处理此事。

如果用户被错误地寄送或直接在URL中打字,你很可能需要被觉醒地寄出,然后可以验证这个被打入服务器的侧面,并允许转站完成或采取其他一些行动。

为什么你们想以你所举的榜样来这样做? 这无疑会使用户远离搜索表和另一页?

扩大你的职能范围,通过“文件.cookie”建立 co,然后通过联合材料、PHP或目标页上的任何东西进行核对,如果 co子被封起来,并转往其他地方,如果不是简单的话。 <Of 课程没有真正安全!

您的例子是否含有真实的法典,或者你是否只是为了让问题更简单地问问问问问而 some?

这样做似乎很奇怪,即向用户提供搜索箱,然后,一旦他们开始打字,就将其转移到另一页。

如果你进行搜查,而且你只想从形式而不是在URL的用户打字中触发电子页,那么,你会考虑将表格方法确定为POST,并在搜索页上核对。 如果该方法是GET,那么URL是人工分类的,你可以转回原来的网页。

诚然,这在技术上违反了使用POST的建议,而这种使用只应用于改变信息的业务,而不是在索取信息时应当使用的GET。 然而,这是可以回避的场合。

您可以采用的另一种做法是,形成一种独特的关键,并将它储存在一个暗藏的表格领域,在决定是否改用原始网页之前进行核对。 这将需要某种可靠的关键生产计划,使其稍微trick,但并非不可能。





相关问题
selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

How to fire event handlers on the link using javascript

I would like to click a link in my page using javascript. I would like to Fire event handlers on the link without navigating. How can this be done? This has to work both in firefox and Internet ...

How to Add script codes before the </body> tag ASP.NET

Heres the problem, In Masterpage, the google analytics code were pasted before the end of body tag. In ASPX page, I need to generate a script (google addItem tracker) using codebehind ClientScript ...

Clipboard access using Javascript - sans Flash?

Is there a reliable way to access the client machine s clipboard using Javascript? I continue to run into permissions issues when attempting to do this. How does Google Docs do this? Do they use ...

javascript debugging question

I have a large javascript which I didn t write but I need to use it and I m slowely going trough it trying to figure out what does it do and how, I m using alert to print out what it does but now I ...

Parsing date like twitter

I ve made a little forum and I want parse the date on newest posts like twitter, you know "posted 40 minutes ago ","posted 1 hour ago"... What s the best way ? Thanx.