[ 63 comments ] ( 5618 views ) | permalink | related link |




( 3 / 5116 )[ 1 comment ] ( 2790 views ) | permalink | related link |




( 3 / 24106 )92 Movies
[ add comment ] | permalink | related link |




( 3 / 27372 )Casio protrek have a lot of module, here is comparison.
Comparison Link
[ add comment ] | permalink | related link |




( 3 / 5564 )string rawurl = Request.Url.ToString();
string nohttp = rawurl.Substring(rawurl.IndexOf("://") + 3);
string hostName = nohttp.Substring(0, nohttp.IndexOf("/"));
string hostURL = rawurl.Substring(0, rawurl.IndexOf(hostName) + hostName.Length);
string fullUrl = hostURL + url;
/*
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(fullUrl);
request.KeepAlive = false;
request.Method = "GET";
request.ContentType = "text/html";
request.AllowAutoRedirect = true;
HttpCookie cookie = Request.Cookies[FormsAuthentication.FormsCookieName];
CookieContainer cookies = new CookieContainer();
cookies.Add(new Uri(hostURL), new Cookie("ASP.NET_SessionId", Session.SessionID));
cookies.Add(new Uri(hostURL), new Cookie(cookie.Name, cookie.Value));
request.CookieContainer = cookies;
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
*/
[ add comment ] | permalink | related link |




( 2.9 / 2744 )Next

Avatar










