THis is the IP address "http://64.xxxxx/pda.htm"
When I log into the browser, it asks me for a username.Then it works fine.
This is what I have on the iPhone, can someone please help me.
self.myWebView = [[UIWebView alloc] initWithFrame:webFrame];
self.myWebView.backgroundColor = [UIColor whiteColor];
self.myWebView.scalesPageToFit = YES;
self.myWebView.delegate = self;
[self.view addSubview:self.myWebView];
NSURLRequest* r = [NSURLRequest requestWithURL:[NSURL URLWithString:@"http://64.183.101.142:81/pda.htm"] cachePolicy:nil timeoutInterval:20];
[self.myWebView loadRequest:r];