Page Loads By IP Address But Only By Domain Name In Chrome

Aug 4, 2014

Just transitioned servers, in Chrome the domain name works fine, but in IE I get an error:

This page can’t be displayed

•Make sure the web address http://50.58.231.78 is correct.
•Look for the page with your search engine.
•Refresh the page in a few minutes.

And in Safari I just get a blank page. If I enter http://50.58.231.78 it comes up fine.

Chrome works fine.

This is an .aspx page using IIS.

View 3 Replies


Similar Messages:

Page Loads Twice In Google Chrome

Jan 5, 2010

Does anyone have any problems with Page_Load being executed twice in Google Chrome?
It's a short question, i do not know what else to explain...

I have a simple asp.net page and in Firefox and IE all it's working fine.
But in Chrome the Page_Load is fired twice...

Later EDIT:
- what is strange is that i have 4 repeaters... binded with random values. The random methods are twice fired (because of page loaded twice) but the repeaters takes the INITIALLY values...so, the 2nd post back is somehow raised after the rendering step.

3rd edit: It happens ONLY at the refresh!

Solution (in my case): There was an empty img src, and that was the cause

View 13 Replies

Web Forms :: When The Page Loads The Focus Is Always Set To The Browser Address Bar?

Mar 17, 2011

I just need to set a focus on the texbox in the Page_Load event.

There are many ways to do this - from the simple textbox.focus() to HTML and Javascript. But none of these methods really works, because when the page loads the focus is always set to the browser address bar.

View 7 Replies

Web Forms :: Silverlight Application Not Loading On FireFox & Chrome But Loads On IE?

Jul 6, 2010

We have an application clusteredbrain.com designed on Silverlight 2.0 connected with OLAP data cubes

Onn IE it works fine but on FireFox or Chrome it doesnot load giving following error

This is the error Message Given by Firefox whwn it tries to call a WCF Webservice.

"Unhandled Error in Silverlight Application An exception occurred during the operation, making the result invalid. Check InnerException for exception details. at System.ComponentModel.AsyncCompletedEventArgs.RaiseExceptionIfNecessary() at OlapSilverlightCharts.ServiceReference2.GetChartDataCompletedEventArgs.get_Result()
at OlapSilverlightCharts.MainPage1.webService_GetChartDataCompleted(Object sender, GetChartDataCompletedEventArgs e) at OlapSilverlightCharts.ServiceReference2.Service1Client.OnGetChartDataCompleted(Object state)"

We have ClienAccesspolicy and crossdomain policy in place.

View 1 Replies

AJAX :: Hovermenu Loads On Datalist Loading In Chrome Not In Other Browsers?

Nov 20, 2010

I have a page in which u can search result for ex: restaurant search.

when u type a name in the search box u will get a result.

i will display search result using th data list.

inside that datalist i vl show the details, for showing some full details i use hover menu.

Problem i face: the hover menu is working well in IE, Firefox .

But in Chrome while i displaying the result itself hover menu is shown without an mouse over.

How to rectify this browser issue ?

View 1 Replies

Cross Domain Call Not Working In FireFox And Chrome?

Nov 16, 2010

I am making a asynchronous request to different server for some data using jquery. It works fine in IE, but doesn't work in FireFox and Chrome, when it reaches the code where the request to other server is made, it freezes there and a blank page is shown. If I remove that piece of code, the ajax works fine.

Also, when I place a breakpoint at document.ready, the breakpoint is hit when debugging using IE, but it's not hit when debugging using FireFox.

Following is the JQuery I am using

jQuery(document).ready(function ($) {

$('.tabs a, .tabs span').livequery('click', function () {[code]....

View 1 Replies

Get Domain Name From Ip Address?

Jun 14, 2010

I am getting destination ip address from packets, now i want to get domain name from ip addess. i have use whois, to get domain name, but it works only for few sites i.e google,microsoft. its not working for rediff or yahoo, Is there another way to get domain name from ip address?

View 2 Replies

Configuration :: Domain Name For Ip Address?

Feb 10, 2011

I want to give a domain name(DNS) to my application which have public ip address. How can i give this in asp.net 3.5 using c#.

View 1 Replies

Extract Domain From Email Address

Mar 4, 2010

I'm trying to extract the domain name from an email address. For example if an email address is info@mydomain.com i want to extract 'mydomain' from the string.

I have some C# code which does this:

[Code]....

This works fine - except if a user has an email address which contains a dot '.' (e.g. fname.lname@mydomain.com) then it throws the following error:

Length cannot be less than zero.Parameter name: length
Line 29: int startIndex = strEmail.IndexOf("@");Line 30: int endIndex = strEmail.IndexOf(".") - startIndex;Line 31: string domain = strEmail.Substring(startIndex + 1, endIndex - 1);

The problem is the first '.' in the email address is causing it to calculate the string from the incorrect position.

Is there a way to retify this - or does anyone know of another solution to extract the domain name from an email address?

View 2 Replies

Web Forms :: Validating Domain Name In An Email Address

Mar 25, 2010

how to check the domain name of an email address...

i.e

in 4@4.com

validating 4(second one-domain) should return false if the domain is not exist again

if 4(first one) is not a valid user then also return false

View 3 Replies

Email Address Validation Based On Domain?

Jan 23, 2011

how do I write a regular expression to filter out email adresses in asp.net mvc? I would like in example to allow users registering email adresses only if coming from [URL] domain.

View 1 Replies

Regex For Multiple Email Address Using A Specific Domain?

May 6, 2010

i have an requirment where an user can enter multiple email address.

The validation should ensure that he should enter address in the format "something@abc.com".

my existing validation ensures that some text is entered before "@" symbol and "abc.com" is the domain.

@"w+([-+.']w+)*@abc.com$";

I would need my regex to check for the delimiter ";" between two mail id's .

valid: a@abc.com |
a@abc.com;b@abc.com|

invalid: a@abc.comm | a@abc.com,b@abc.com | @abc.com |
a@abc.comb@abc.com|

I've tried many links but ther were of no use and i'd be grateful if someone could help me modify the current one to suit my requirments

View 7 Replies

Web Forms :: How To Validate An Email Address Based On The Domain

Jun 21, 2010

able to validate any email address based on the domain. For example, the system says anybody with a microsoft.com email address can create an account. Here is my code so far, it doesn't appear to work.

If Not Regex.IsMatch(tbEmailAddress.Text.Trim, "^([0-9a-zA-Z]([-.w]*[0-9a-zA-Z])*@" + mySetting.EmailDomain)

View 2 Replies

How To Authenticate Users Based On Their Email Address And Password As Oppose To Domain

Dec 10, 2010

Does anyone know how I can authenticate users based on their Email Address and Password as oppose to Domain, Username and then Password?

View 1 Replies

Web Forms :: Regular Expression Validator For Email Address With Specific Domain Validation?

Feb 26, 2013

In my registration form, there is field to enter email-id of member, i want to restrict user, so that he would not able to enter gmail, yahoo, radiff.... emailids is this possible.., Only company email id eg: priyanka@juncturetech.net must be allowed?

View 1 Replies

WCF / ASMX :: Exposing MEX Endpoint Address - WCF Test Page Shows The WSDL Address Wrongly

Apr 15, 2010

I have managed to expose the MEX endpoint of my WCF service and I can access it with the address like [URL] (example) and get the WDSL. So no problem there.

However, my WCF test page shows the address wrongly by using the server's name instead of the DNS name. And if I click on the link on the test page it won't work (can't get WSDL).

The WCF test page looks like this:

MyService Service

You have created a service.

To test this service, you will need to create a client and use it to call the service.

[URL]

The WCF service is hosted in IIS6. I would like to have a test page with the correct WSDL address so users can see the WSDL quickly in the browser just by clicking on the WSDL address.

In short: How can I change the MyServerName to inter.mycompany.com on the WCF test page? Can this be specified somewhere in the Web.config?

View 3 Replies

Web Forms :: Prevent Master Page From Loading Whenever Content Page Loads?

Mar 10, 2010

The problem with my web application is when ever i load the home page - The master page as well as content page loads ---This seems fine but when i navigate thorugh the website which have the same Master page but diffrent content page .... the master page loads again. What i want to do is ..I want to keep the master page intact and only the content page loads. How can I accomplish it..

View 3 Replies

Develop A Page Where Individual Section Will Load With Busy Icon When Page Loads Without Using Web Parts?

Feb 11, 2011

i have seen many site where individual web parts load with busy icon when page loads. without using web parts how can develop a page where individual section will load with busy icon when page loads.

View 1 Replies

Identify Content Page Loads In A Master Page Dynamically?

Jun 3, 2010

I have a master page 'Master1' and i have used a content place holder 'content1' and loads pages 'Page1' and 'page2' in the 'content1'. Is there any way to identify which page is loaded to the content place holder whether it is 'Page1' or 'Page2' dynamically.

View 2 Replies

Page Loads Twice Due To Js Code?

Apr 3, 2010

I have this div inside a repeater, where i set the class, onmouseover and onmouseout properties from code behind:

<div id="Div1" runat="server" class="<%# getClassProduct(Container.ItemIndex) %>" onmouseover="<%# getClassProductOver(Container.ItemIndex) %>" onmouseout="<%# getClassProductOut(Container.ItemIndex) %>">

codebehind:

public String getClassProduct(Object index)
{
int indexItem = Int32.Parse(index.ToString());
if (indexItem == 3)
return "produs_box produs_box_wrap overitem lastbox";

[Code]....

This code is fired initially, and after the page is rendered, it is called again, and executed again due to that js...

UPDATE: happens only in Firefox. On chrome, it works fine...

"Solution": deactivated YSlow....just "horrible".

View 1 Replies

Configuration :: 2.0 (VB) Page Loads Only On The First Try?

Aug 23, 2010

have an ASP.Net 2.0 (VB) application which connects (SQL Authentication) to SQL Server 2008. I publish the application to our intranet. The start page is frmMain.aspx. I RDP to a "neutral" PC (one like our users have) and the site loads fine the first time in. The users cannot bring up this application, however (it does not load--times out). They have been able to run this application before from this same intranet location and have not had problems. I have re-published the site, but this behavior continues.

View 2 Replies

Web Page Loads Slowly?

Jan 27, 2012

What would cause a single webpage to load slowly? I have javascript within the <head> element. The html consists of 2 <div> elements and within these <div> elements are a bunch of <table> elements and that's it.

The functionality of this site is such that each <table> element contains data that during the "onload" event, these <table> elements are hidden. Each <table> elements is controlled by an HTML menu (the menu itself is an html table). When a menu item is clicked, it will either display or hide the <table> element depending on whether it is already displayed or hidden.

View 5 Replies

Redirecting To Folder Web Page When Page Loads?

Mar 10, 2010

I have a created a web portal in multi-language. I put all the pages related to "english-language" in one folder (/english) and "arabic-language" in one folder. I didn't have a default.aspx in my root folder(wwwroot), its in /english folder. There is no
index.htm or default.aspx page in my root folder.I am very confused how can i redirect the default.apage when page loads. The default pages is stored in /english folder.

View 3 Replies

Programmatically Run Javascript When A Page Loads?

Jun 3, 2010

In my global.asax file for my ASP.net project, I am checking for certain conditions. When those conditions are met, I want to automatically execute javascript code when the page runs.

This is my code:

if condition Then
Response.Write(" < script type=""text/javascript"" > ")
Response.Write(" // Javascript code to do stuff ")
Response.Write(" < /script > ")
End If

While this appears to work to execute the Javascript code, I don't think it's a best practice because this code will preceed all of the HTML of the page that gets loaded.

What is the best way of programmatically tacking on some extra Javascript code to be run when my page loads?

View 3 Replies

Javascript Update Before Page Loads?

May 29, 2010

I'm trying to update values from a xml file into textboxes. I have this javascript being called in the Page_Load event

this.Page.ClientScript.RegisterStartupScript(this.GetType(), "Script", sb.ToString(), true);

I click the continue button which does a post back but the values are not updated until I refresh the page again which makes me think the js isn't being run until after the page is returned. I'm wondering how to have the values updated when the page is refreshed after the button postback.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved