是否可以从浏览器中获取收藏列表?

时间:2023-01-26 15:10:59

Is it possible to read a user's favorites list using asp.net?

是否可以使用asp.net读取用户的收藏夹列表?

5 个解决方案

#1


5  

This would violate the visitors privacy. You would need a browser component that they installed locally to do such a thing.

这会侵犯访客的隐私。你需要一个他们在本地安装的浏览器组件来做这样的事情。

#2


1  

ASP.NET is technically a server side technology... it does allow you to output html and javascript, but to be more concise your question should read:

ASP.NET在技术上是一种服务器端技术......它确实允许您输出html和javascript,但为了更简洁,您的问题应该是:

"Is it possible to read a user's favorites (bookmarks) via javascript?"

“是否可以通过javascript读取用户的收藏(书签)?”

Since you need a client side script to do this.

因为您需要客户端脚本来执行此操作。

And the answer to that question, unfortunately for you, is no.

不幸的是,对你而言,这个问题的答案是否定的。

#3


0  

God, I hope not. And if so they need to fix that immediately.

上帝,我希望不是。如果是这样,他们需要立即解决。

#4


0  

I don't think so, ASP.net is on the server side not on client side so i m sure it's impossible to do it without a plugin (i m even not sure you can do it using a javascript), on firefox some social network provide specific plugin.

我不这么认为,ASP.net在服务器端而不是在客户端,所以我确定没有插件就不可能做到这一点(我甚至不确定你能用javascript做到这一点),在firefox上一些社交网络提供特定插件。

#5


0  

Is it possible? Yes.

可能吗?是。

Is it possible without the user having to accept a component install? No.

是否可以在用户不必接受组件安装的情况下进行?没有。

Is it possible using only ASP.NET without running code on the client? No.

是否可以仅使用ASP.NET而不在客户端上运行代码?没有。

You would have to create something like an ActiveX component or a Java applet that you run in the browser. The component would have to check for different browsers and different versions of each browser to know where the favorites would be stored. Some browsers may store them in such a way that it's practically impossible to read them.

您必须创建类似于在浏览器中运行的ActiveX组件或Java小程序。该组件必须检查不同的浏览器和每个浏览器的不同版本,以了解收藏夹的存储位置。有些浏览器可能会以一种几乎不可能读取它们的方式存储它们。

#1


5  

This would violate the visitors privacy. You would need a browser component that they installed locally to do such a thing.

这会侵犯访客的隐私。你需要一个他们在本地安装的浏览器组件来做这样的事情。

#2


1  

ASP.NET is technically a server side technology... it does allow you to output html and javascript, but to be more concise your question should read:

ASP.NET在技术上是一种服务器端技术......它确实允许您输出html和javascript,但为了更简洁,您的问题应该是:

"Is it possible to read a user's favorites (bookmarks) via javascript?"

“是否可以通过javascript读取用户的收藏(书签)?”

Since you need a client side script to do this.

因为您需要客户端脚本来执行此操作。

And the answer to that question, unfortunately for you, is no.

不幸的是,对你而言,这个问题的答案是否定的。

#3


0  

God, I hope not. And if so they need to fix that immediately.

上帝,我希望不是。如果是这样,他们需要立即解决。

#4


0  

I don't think so, ASP.net is on the server side not on client side so i m sure it's impossible to do it without a plugin (i m even not sure you can do it using a javascript), on firefox some social network provide specific plugin.

我不这么认为,ASP.net在服务器端而不是在客户端,所以我确定没有插件就不可能做到这一点(我甚至不确定你能用javascript做到这一点),在firefox上一些社交网络提供特定插件。

#5


0  

Is it possible? Yes.

可能吗?是。

Is it possible without the user having to accept a component install? No.

是否可以在用户不必接受组件安装的情况下进行?没有。

Is it possible using only ASP.NET without running code on the client? No.

是否可以仅使用ASP.NET而不在客户端上运行代码?没有。

You would have to create something like an ActiveX component or a Java applet that you run in the browser. The component would have to check for different browsers and different versions of each browser to know where the favorites would be stored. Some browsers may store them in such a way that it's practically impossible to read them.

您必须创建类似于在浏览器中运行的ActiveX组件或Java小程序。该组件必须检查不同的浏览器和每个浏览器的不同版本,以了解收藏夹的存储位置。有些浏览器可能会以一种几乎不可能读取它们的方式存储它们。