Jitto P.Jose @jittopjose ?
active 16 hours, 2 minutes ago-
Jitto P.Jose started the forum topic How to get date difference in C# in the group ASP.net: 17 hours, 6 minutes ago · View
Hi,
Using the following code you can get the difference of two DateTime valuesstring startDateString = “1/10/2009″;
string endDateString = “3/24/2010″;
DateTime startDate = Convert.ToDateTime(startDateString);
DateTime endDate = Convert.ToDateTime(endDateString);
TimeSpan dateDifference = endDate.Subtract(startDate);
int days = dateDifference.Days;You have several options to get the difference in Days, Hours, Milliseconds etc…
-
Jitto P.Jose posted an update: 17 hours, 10 minutes ago · View
@rahuldmenon Its a privilege to the CMDN.com to be blocked in Dell’s office…
-
Jitto P.Jose posted an update: 17 hours, 44 minutes ago · View
@rahuldmenon which is your cricket site?.. is it CMDN.com?
-
Jitto P.Jose started the forum topic How to add and read session values in c# in the group ASP.net: 17 hours, 54 minutes ago · View
Add values to session: Session.Add Eg: string firstName = “Jeff”; string lastName = “Smith”; string city = “Seattle”; Session.Add(“First”, firstName); Session.Add(“Last”, lastName); Session.Add(“City”, city); Read values from session Eg: string firstName = (string)(Session); string lastName = (string)(Session); string city = (string)(Session); Its a best practice to put a null check before accessing session values Eg: [...]
-
Jitto P.Jose posted an update: 18 hours, 33 minutes ago · View
You are really using this site for marketing…
keep going… @andylau -
Jitto P.Jose started the forum topic How to Process XML using LINQ in the group ASP.net: 18 hours, 35 minutes ago · View
Hi,
Here I am sharing an article which describes how to process xml documents using LINQThanks….
-
Jitto P.Jose started the forum topic How to access Forms Authentication Timeout property from code in the group ASP.net: 18 hours, 49 minutes ago · View
Forms Authentication Timeout property can be accessed from c# code. You can access it via reflection
private static int GetFormsAuthenticationTimeOut()
{
Type formAuthType = typeof(FormsAuthentication);
var field = formAuthType.GetField(“_Timeout”, BindingFlags.Static | BindingFlags.NonPublic);
if (field == null) return 30;
var value = field.GetValue(null);
return (value == null) ? 30 : (int)value;
} -
Jitto P.Jose posted an update: 21 hours, 24 minutes ago · View
@rahuldmenon why did you send that link to me?.. is there anything important?
-
Jitto P.Jose posted an update: 1 day, 12 hours ago · View
@@rahuldmenon c u tomo…
-
Jitto P.Jose posted an update: 1 day, 12 hours ago · View
@rahuldmenon Me too luv friday….
-
Jitto P.Jose started the forum topic How to create a JavaScript countdown timer in the group JavaScript: 1 day, 19 hours ago · View
Hi, The following code will create a JavaScript countdown timer var mins; var secs; function startCountDown() { cd(); } function cd() { mins = 1 * m(“5″); // change minutes here secs = 0 + s(“:01″); // change seconds here (always add an additional second to your total) redo(); } function m(obj) { for (var [...]
-
Jitto P.Jose started the forum topic How to refresh a page using javascript in the group JavaScript: 1 day, 19 hours ago · View
Hi
Following code can be used for refreshing a page using javascriptlocation.reload(true)
You can get more options for reloading a page from the following tutorial:
http://www.quackit.com/javascript/javascript_refresh_page.cfmThanks…
-
Jitto P.Jose started the forum topic How to use setInterval and setTimeout in the group JavaScript: 1 day, 21 hours ago · View
Hi,
This tutorial describes the usage of setInterval and setTimeout JavaScript functionshttp://www.switchonthecode.com/tutorials/javascript-tutorial-using-setinterval-and-settimeout
Thanks..
-
Jitto P.Jose posted an update in the group JavaScript: 1 day, 21 hours ago · View
Hi Friendz… Welcome to HallowDemon Friendz JavaScript Community
-
Jitto P.Jose created the group JavaScript 1 day, 21 hours ago · View
-
Jitto P.Jose started the forum topic Warn user before session timeout in the group ASP.net: 1 day, 22 hours ago · View
This article explain how to warn user before session timeout and also allow them to extend the session.
http://www.vijaykodali.com/Blog/post/2010/05/20/Alert-user-before-session-timeout.aspx
Thanks
-
Jitto P.Jose posted an update: 1 day, 22 hours ago · View
@myra1128 hello… welcome to HallowDemon Friendz… I hope you will have really good time here…
-
Jitto P.Jose posted an update: 2 days, 16 hours ago · View
Oh… frustrating day than yesterday….
-
Jitto P.Jose started the forum topic Manhattan OS – Linux for beginners in the group Ubuntu: 3 days, 15 hours ago · View
Manhattan OS is a Linux distribution based on Ubuntu created by Kevin McDole. Manhattan OS comes with basically everything you need and looks simply amazing so if you want to convert a friend to Linux, this is the distro you should suggest.
http://www.webupd8.org/2010/07/manhattan-os-based-on-ubuntu-makes-it.html
-
Jitto P.Jose posted an update: 3 days, 16 hours ago · View
@rahuldmenon Let my site have some updates…
- Load More

