internet

iphone monotouch detect if there is an internet connection

In Monotouch on an iPhone/iPod, how do I detect if there is an internet connection available? ...

Building a C# application that shows recently updated web sites

Hello, I'd like to build a C# application that would: go through the list of my Favorites (for example, in IE) check if site was updated since my last visit show a list of recently updated urls Point 2 seems problematic, since C#'s HttpWebResponse.LastModified property is not working for some blogs and other sites (it reports the cur...

VBA: Get source code from website using wininet

So basically I have the following code: Dim myIE As InternetExplorer: Set myIE = New InternetExplorer myIE.Visible = True myIE.Navigate URL:="http://www.google.com" While myIE.Busy DoEvents 'wait until IE is done loading page. Wend How would I be able to get the source code of the page? And it'll be nice if someone can link me to...

VisualSVN over distributed machines ???

Hey guys, i m new to SVN.. have downloaded visualsvn server and client with tortoiseSVN.. the problem is.. we are group of 4 ppl..we are developin a website on asp.net.. i want the solution file to be in a repository on a machine which can be a server(desktop). and rest are all laptops tryin to gather the updated data.. we are working f...

IE hangs on web site when contacting web service

Hi All, I have a website that seems to be Ok in Mozilla but when I access some pages in IE (mostly the ones where it has to contact a web service) the page hangs. If I refresh and then click the same button again, it seems to work fine 90% of the time. As mentioned, the same features work flawlessly in Mozilla. I am not really sure whe...

Blocking all Windows Internet access from a Win32 app

What would be the simplest way for an application I'm writing to block all Internet access on a Windows machine? More details: Windows: XP or higher Application: A basic Win32 app written in C/C++. Blocking: It needs to be able to block and unblock at will, ideally in a way that the user can't easily reverse. (By, say, right clickin...

Javascript Internet Explorer 8/7 Not Posting in Ajax Call

Hi Guys new to this site but a big fan. Right the problem. It's come to our attention that sometimes on Internet Explorer the post variable don't come through. This is our basic ajax function function GetXmlHttpObject(handler){ var objXmlHttp=null if (navigator.userAgent.indexOf("Opera")>=0){ xmlHttp=new XMLHttpRequest(); xmlHt...

How to search a particular type of web addresses?

See these url's: http://en.wikipedia.org/wiki/1_(number) http://en.wikipedia.org/wiki/10_(number) http://en.wikipedia.org/wiki/100_(number) http://en.wikipedia.org/wiki/10000_(number) Is there some way to search a list of all the pages of this format on the WWW? ...

Access WCF service through internet???

** Hi all, I develop a wcf service which works in several pc connected with a network, i want to to make all clients connect to the server through internet, how can it be done? thanks in advance. ** ...

disabling pop-up of secure and non-secure content in Internet Explorer

I have few images on a web page which are fetched from http server while whole web page is on https. So in internet explorer 7 & 8 , I get this pop up of "This page contains both secure and non-secure items" . Majority of users use internet explorer. Somehow they are getting worried about this pop-up. Even though I told some of the users...

Why are these floats wrapping in Internet Explorer?

My website, ReadyMadeWeb.com, looks great in FireFox, Safari, and Chrome, but of course IE has different plans for the floats used the in the #content area. You can see what I mean if you view the site in IE. The main column is pushed below the first sidebar. The content boxes and the de.licio.us sidebar both sit within another div. ...

Make WCF service be accessible through Internet.

I've made a WCF service. I want it's client to be able to access it from anywhere. How can I do that? Details: I want it to be hosted in a Windows process, not a site. I'm using TCP binding. I don't know almost anything about web hosting etc. It's desirable not to use IIS... I have found many recommendations in the web, but stil...

Internet application or window application?

I should develop a online search application which connects to an external database in a different server. This application can be a web application one (running on a Internet browsers basically) or a normal standard window application (with its own GUI). Does one of the two approaches have more benefits of the other? If so, which one? ...

How can I capture and print packets from the internet on Windows?

How can I capture them? Is there any module/lib to do it? Please if it do, post an example ...

Jquery select box problem with Internet Explorer

Ok, this might be a really odd problem. I am writing a web application, and I want to change the value of a certain select box: <select name="type" class="type"> <option value="word">word</option> <option value="digit">digit</option> <option value="letter">letter</option> <option value="single">single character</option> <option value="...

How does PasteBin work in the code highlighting area?

I think it's awesome how PasteBin highlights different languages, how does it work? ...

C++ : Getting HTTP status code from a URL

I am working on a application where-in i have to hit a URL and get the HTTP status code returned from that URL. Currently I am using WININET functions to achieve this. The code to achieve this: hOpen = InternetOpenA("MYAPP", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0); hFile = InternetOpenUrlA(hOpen, url.c_str() , NULL, 0,INTERNET_FLAG_RE...

xmlHttpRequest abort() method does not close the connection in Internet Explorer

I have multiple xmlHttpRequests on my page, and I am attempting to call the abort method on them all. Works great in FF. IE, on the other hand does not do a darn thing. The connections do not close, and I am unable to navigate to another page until the requests complete. What is this? Why doesn't IE close the connections when abort() is ...

Javascript/Ajax error help in Internet Explorer

I'm building an e-commerce site for a client, and for some reason in Internet Explorer when I click the add to cart button, the shopping cart messes up the quantities added into the cart. I think for some reason IE is refreshing the page, causing the quantities to double, I just can't figure out how to fix it. I would greatly appreciate ...

An elegant / simple way to check whether internet is available or not.

I did a quick search on how to check whether Internet is available or not. Most of them talked about making InterOp calls to wininet.dll. One of the answers pointed towards System.Net.NetworkInformation namespace. Exploring the namespace I found a class Ping which could be used to pinging to our servers from code, and checking whether s...