c++ - Login not working in IE11 .But working properly on Chrome and Firefox -


there c++ firmware code used set cookie browser follows

sprintf(sztmp, "set-cookie: cgisessid=%s; language=en; max-age=%d; version=1; expires=%s; path=/", m_szsid, p_uncookielifetime, outstr);  fprintf( io.output, "%s\r\n", sztmp ); 

the cookie goes output stream , gets set in ie-11 when try retrieve cookie using name "cgisessid" null returned.from understand ie11 not storing cookie there way resolve this. tried following way: go settings->internet options-> privacy , selected accept cookies still not working .

actually setting cookie login purpose. please let me know if can help.

regards, sid


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -