Home > OS >  Win2012r2iis background screenshots, web cookies to be lost
Win2012r2iis background screenshots, web cookies to be lost

Time:09-23

Win2012 iis, website backstage with iecapt. Exe scraping of the page images, difficult and redirect page background can't read the sessionid, solve
In win2008, win2016 is normal, is win2012 has a problem

CodePudding user response:

IIS version is not the same? Have to see the detailed log

CodePudding user response:

I, for example, web site A captured picture through the background, the background call iecapt. Exe crawl the web pages of the site, B assume that B site pages for: d1. Aspx? Lx=1
B site pages d1. Aspx daemon for
 
Protected void Page_Load (object sender, EventArgs e)
{
if (! IsPostBack)
{
Session [" lx "]=Request. The QueryString (" lx ");
Response. Redirect (" d2. Aspx ");//d2. Aspx background through the Session [" lx "] read d1. Aspx incoming lx parameter value in the

}
}

Now, directly on the ie browsing d1. Aspx? Lx=1 shows normal, but through A website backstage iecapt. Exe screenshots d1. When the aspx session (lx) and less than d2. Aspx, in d2. Aspx background can't read the session/" lx "parameter
  • Related