Movies 


[ 63 comments ] ( 5552 views )   |  permalink  |  related link  |   ( 3 / 8137 )
92 Movies How Many you watched 


[ 1 comment ] ( 2715 views )   |  permalink  |  related link  |   ( 3 / 4640 )
92 Movies How many you watched 
92 Movies

[ add comment ]   |  permalink  |  related link  |   ( 2.9 / 8020 )
CASIO ProTrek Comparison 
Casio protrek have a lot of module, here is comparison.



Comparison Link

[ add comment ]   |  permalink  |  related link  |   ( 3 / 2099 )
add http request 
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  |   ( 3 / 1073 )

NextNext