- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
基本上 IE 记得网站 www.stackoverflow.com 使用 JavaScript cookie,但是是否可以在 InnoSetup 中代表 stackoverflow.com 手动创建相同的 cookie?
Javascript cookie:
function setCookie(cname,cvalue,exdays) {
var d = new Date();
d.setTime(d.getTime()+(exdays*24*60*60*1000));
var expires = "expires="+d.toGMTString();
document.cookie = cname + "=" + cvalue + "; " + expires;
}
function getCookie(cname) {
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++) {
var c = ca[i].trim();
if (c.indexOf(name)==0) return c.substring(name.length,c.length);
}
return "";
}
function checkCookie(user) {
var user=getCookie("username");
if (user!="") {
alert("Welcome again " + user);
} else {
user='bandwidth - set to off for example';
setCookie("username",user,30);
}
}
注意:因为无法从 IE 检测我的插件是否安装。我突然意识到我必须处理 cookies 。但我的插件必须在首次安装时创建该 cookie,而不是 IE。
编辑:引用
http://msdn.microsoft.com/en-us/library/windows/desktop/aa385107%28v=vs.85%29.aspx
最佳答案
要创建与指定 URL 关联的 cookie,您可以使用 InternetSetCookie
功能。要检索指定 URL 的 cookie,您可以使用 InternetGetCookie
功能。下面是他们的翻译,其中包含一个示例,展示了如何创建和读取 cookie(真正的代码实现,涉及错误消息,或者我会一直关注的包装函数;以此代码为例,展示如何使用这些 API 函数):
[Setup]
AppName=My Program
AppVersion=1.5
DefaultDirName={pf}\My Program
[Code]
#ifdef UNICODE
#define AW "W"
#else
#define AW "A"
#endif
const
ERROR_INSUFFICIENT_BUFFER = 122;
ERROR_NO_MORE_ITEMS = 259;
function InternetSetCookie(lpszUrl: string; lpszCookieName: string;
lpszCookieData: string): BOOL;
external 'InternetSetCookie{#AW}@wininet.dll stdcall';
function InternetGetCookie(lpszUrl: string; lpszCookieName: string;
lpszCookieData: string; var lpdwSize: DWORD): BOOL;
external 'InternetGetCookie{#AW}@wininet.dll stdcall';
function TryCreateCookie(const URL, Name, Data: string): Boolean;
begin
// try to create a specified cookie
Result := InternetSetCookie(URL, Name, Data);
// if the function call failed, we can optionally report the reason why
if not Result then
MsgBox('Cookie creation failed!' + #13#10 +
SysErrorMessage(DLLGetLastError), mbError, MB_OK);
end;
function TryRetrieveCookie(const URL, Name: string; out Data: string): Boolean;
var
S: string;
BufferSize: DWORD;
begin
// initialize function result
Result := False;
// initialize buffer size to 0 to query needed buffer size
BufferSize := 0;
// first call is to determine whether there's a requested cookie, or if so,
// to retrieve the needed buffer size
if not InternetGetCookie(URL, Name, #0, BufferSize) then
begin
// the function failed as expected, so let's inspect the reason
case DLLGetLastError of
// if the reason for failure was the insufficient buffer, it means that
// there's a cookie matching the request and that we have just received
// the required buffer size
ERROR_INSUFFICIENT_BUFFER:
begin
// initialize buffer size by the previously returned size
SetLength(S, BufferSize div SizeOf(Char));
BufferSize := Length(S);
// and call the function again, now with the initialized buffer; this
// time it should succeed; if it is so, then...
if InternetGetCookie(URL, Name, S, BufferSize) then
begin
// everything went fine, so let's return success state and assign a
// retrieved value to the output parameter
Result := True;
Data := S;
end
else
// the second function call failed; that should not happen...
MsgBox('Cookie retrieval failed!' + #13#10 +
SysErrorMessage(DLLGetLastError), mbError, MB_OK);
end;
// this code is returned when there's no cookie found
ERROR_NO_MORE_ITEMS:
begin
// no cookie matching the criteria was found; the return value of this
// function has already been initialized to False but it's upon you to
// react on this fact somehow, if needed
end;
else
// the first function call failed for unexpected reason
MsgBox('Cookie search failed!' + #13#10 +
SysErrorMessage(DLLGetLastError), mbError, MB_OK);
end;
end;
end;
procedure InitializeWizard;
var
CookieData: string;
begin
// try to create cookie
TryCreateCookie('http://example.com', 'MyCookie',
'TestData=1234; expires=Wed,31-Dec-2014 23:59:59 GMT');
// try to retrieve cookie
if TryRetrieveCookie('http://example.com', 'MyCookie', CookieData) then
MsgBox(CookieData, mbInformation, MB_OK);
end;
关于javascript - InnoSetup - 有没有办法为 Internet Explorer 手动创建 cookie?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24675548/
在我的主要组件中,我有: mounted() { window.$cookie.set('cookie_name', userName, expiringTime); }, 这会产生以下错误:
我正在学习 cookie,并且我想知道在编写依赖 cookie 来存储状态的 Web 应用程序时浏览器的支持情况。 对于每个域/网站,可以向浏览器发送多少个 Cookie,大小是多少? 如果发送并存储
我已经为我的站点设置了一个 cdn,并将其用于 css、js 和图像。 网站只提供那些文件 我的问题是 firefox 中的页面速度插件对于我的图片请求,我看到了一个 cookie Cookie fc
在阅读了 Internet 上的文档和帖子后,我仍然无法解决 jMeter 中的 Cookie Manager 问题。 我在响应头中得到了 sid ID,但它没有存储在我的 cookie 管理器中。
我正在 Node.JS 中处理一些类似浏览器的 cookie 处理,想知道从 NodeJS and HTTP Client - Are cookies supported? 开始对这段代码进行扩展到什
我正在此堆栈上构建自托管 Web 服务器:欧文南希网络 API 2 我正在使用 Katana 的 Microsoft.Owin.Security.Cookies 进行类似表单的身份验证。我得到了 Se
我有一个从另一个网站加载资源的网站。我已经能够确定: 第三方网站在用户的浏览器上放置 cookie。 如果我在浏览器设置中禁用第三方 cookie,第三方网站将无法再在浏览器上放置 cookie。 该
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 9年前关闭。 Improve this q
我正在使用 python mechanize 制作登录脚本。我已经读到 Mechanize 的 Browser() 对象将自动处理 cookie 以供进一步请求。 我怎样才能使这个 cookie 持久
我正在尝试在 www.example.com 和 admin.other.example.com 之间共享 cookie 我已经能够使其与 other.example.com 一起使用,但是无法访问子
我设置了一个域为 .example.com 的 cookie .它适用于我网站上的每个一级子域,应该如此。 但是,它不适用于 n 级子域,即 sub.subdomain.example.com和 to
我想让用户尽可能长时间地登录。 我应该使用什么? 普通 cookies 持久性 cookie 快闪 cookies ip地址 session 或这些的某种组合? 最佳答案 我认为 Flash cook
如果给定的 Web 服务器只能读取其域内设置的 cookie,那么 Internet 广告商如何从其网络外的网站跟踪用户的 Web 流量? 是否存在某种“supercookie”全局广告系统,允许广告
我知道一个 cookie 可以容纳多少数据是有限制的,但是我们可以设置多少个 cookie 有限制吗? 最佳答案 来自 http://www.ietf.org/rfc/rfc2109.txt Prac
如果我拒绝创建 cookie,则在我的浏览器中创建名称为 __utma、__utmb 等的 cookie。我认为这个 cookie 是用于谷歌分析的。任何人都知道谷歌如何创建这个 cookie,即使浏
我有一个生产环境和一个登台环境。我想知道我是否可以在环境之间沙箱 cookie。我的设置看起来像 生产 domain.com - 前端 SPA api.domain.com - 后端节点 分期 sta
我想知道浏览器(即 Firefox )和网站的交互。 当我将用户名和密码提交到登录表单时,会发生什么? 我认为该网站向我发送了一些 cookie,并通过检查这些 cookie 来授权我。 cookie
我在两个不同的域中有两个网络应用程序 WebApp1 和 WebApp2。 我在 HttpResponse 的 WebApp1 中设置 cookie。 如何从 WebApp2 中的 HttpReque
我正在使用Dartium“Version 34.0.1847.0 aura(264987)”,并从Dart创建一个websocket。但是,如果不是httpOnly,我的安全 session cook
我从 Headfirst Javascript 书中获取了用于 cookie 的代码。但由于某种原因,它不适用于我的浏览器。我主要使用chrome和ff,并且我在chrome中启用了本地cookie。
我是一名优秀的程序员,十分优秀!