int? GetInt(String key) { String value = GetCookie(key).toString(); if (value.isEmpty) return 0; return int.parse(value); }