{Javascript} Cookies-Trickcode
|
Javascript Cookies
In these articles, here I am placing a Method for finding Javascript Cookies
for example, if we want to know which control causes the Javascript Cookies on the page. you simply use this code.
<script type=”text/javascript“>
function createCookie() {
document.cookie = “CookieName=CookieValue;” + “expires=Sat, 16 May 2020 18:40:22 GMT”;
}
function getCookieValue(key) {
currentcookie = document.cookie;
if (currentcookie.length > 0) {
firstidx = currentcookie.indexOf(key + “=”);
if (firstidx != -1) {
firstidx = firstidx + key.length + 1;
lastidx = currentcookie.indexOf(“;”, firstidx);
if (lastidx == -1) {
lastidx = currentcookie.length;
}
return unescape(currentcookie.substring(firstidx, lastidx));
}
}
return “”;
}
</script>
Do you know:-
- How to Retrieve data using dataset in c#
- How can I prevent the browser back button After Logout
- Calendar Control in c# Windows Application
- Timer tick event in c# windows application
- How to delete record in c# using the connected approach
- [Connect] to Database c# Through Code
- The Command Class | C# | TrickCode
- C# DataReader ADO.NET |Trickcode
- What is disconnected data access?
- how to Adding Parameters to Commands
- SQL Basics?
- What is Database Preparations?
- SQL vs NoSQL or MySQL vs MongoDB
- What is data provider in C#?
- What is connection string C#?
- [SQL] SELECT Statement | Example
- how to get return value from stored procedure in sql server
- how to prevent sql injection attacks
- What is Database? What is SQL?
- C#.Net How To: Send email in asp.net using c#
If you like the tutorial, then please share this tutorial with your friends on social media.
