NewsBot
1
*//############################################################
*//Creates and prepares the cookie jar
*//############################################################
*void Cookie_CreateJar(){
**CookieJar = Request.Cookies[Cookie_ContainerName];
**if(CookieJar==null){
***CookieJar = new HttpCookie(Cookie_ContainerName);
***CookieJar.Expires = DateTime.Now.AddDays(Cookie_ExpiresDaysFromNow);
***Response.Cookies.Add(CookieJar);
**};
*}
*//############################################################
*//Deletes and breaks the cookie jar
*//############################################################
*void Cookie_BreakJar(){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***tempJar.Expires = DateTime.Now.AddDays(-1);
***Response.Cookies.Add(tempJar);
**};
*}
*//############################################################
*//Creates (bakes) a cookie in the cookie jar
*//############################################################
*void Cookie_Bake(string cName, string cValue){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***if(Cookie_Use(cName)!=cValue){
****//This line adds more values to ONE cookie name :
****//tempJar.Values.Add(cName, cValue);
****tempJar.Values[cName] = cValue;
****Cookie_Update(tempJar);
***};
**};
*}
*//############################################################
*//Deletes (eats) a cookie from the cookie jar
*//############################################################
*void Cookie_Eat(string cName){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***tempJar.Values.Remove(cName);
***Cookie_Update(tempJar);
**};
*}
*//############################################################
*//Gets the cookie value
*//############################################################
*string Cookie_Use(string cName){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***if(tempJar[cName]!=null){
****return tempJar[cName].ToString();
***}else{
****return "";
***}
**}else{
***return "";
**};
*}
More...
View All Our Microsoft Related Feeds
*//Creates and prepares the cookie jar
*//############################################################
*void Cookie_CreateJar(){
**CookieJar = Request.Cookies[Cookie_ContainerName];
**if(CookieJar==null){
***CookieJar = new HttpCookie(Cookie_ContainerName);
***CookieJar.Expires = DateTime.Now.AddDays(Cookie_ExpiresDaysFromNow);
***Response.Cookies.Add(CookieJar);
**};
*}
*//############################################################
*//Deletes and breaks the cookie jar
*//############################################################
*void Cookie_BreakJar(){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***tempJar.Expires = DateTime.Now.AddDays(-1);
***Response.Cookies.Add(tempJar);
**};
*}
*//############################################################
*//Creates (bakes) a cookie in the cookie jar
*//############################################################
*void Cookie_Bake(string cName, string cValue){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***if(Cookie_Use(cName)!=cValue){
****//This line adds more values to ONE cookie name :
****//tempJar.Values.Add(cName, cValue);
****tempJar.Values[cName] = cValue;
****Cookie_Update(tempJar);
***};
**};
*}
*//############################################################
*//Deletes (eats) a cookie from the cookie jar
*//############################################################
*void Cookie_Eat(string cName){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***tempJar.Values.Remove(cName);
***Cookie_Update(tempJar);
**};
*}
*//############################################################
*//Gets the cookie value
*//############################################################
*string Cookie_Use(string cName){
**HttpCookie tempJar = Request.Cookies[Cookie_ContainerName];
**if(tempJar!=null){
***if(tempJar[cName]!=null){
****return tempJar[cName].ToString();
***}else{
****return "";
***}
**}else{
***return "";
**};
*}
More...
View All Our Microsoft Related Feeds