Forms Data Controls :: DropDownList And AutoPostBack: IE8 Vs Chrome And Firefox?

Feb 18, 2011

I have a DropDownList in a GridView with AutoPostBack="true" and on SelectedIndexChanged fires an event.

[Code]....

Everything works fine across browsers as long as the user is scrolling through the DropDownList using a mouse.In IE8, things start to go haywire when the user is navigating the DropDownList using up/down arrows on the keyboard. The SelectedIndexChange event is fired with nearly every up/down key pressed. In Firefox 3 and Chrome 9, the behavior is more like what I would expect, that the event isn't fired until the user stops on DropDownList selection and hits the enter key.

Is there something that I should be doing in IE, short of setting AutoPostBack="false", so that the event is fired every time the up/down arrows are used on the keyboard?

View 4 Replies


Similar Messages:

Forms Data Controls :: Broken Treeview Line On Expandind In IE8/firefox/chrome?

Feb 23, 2011

i am using treeview controls... but its showing broken lines and also line not well aligned.. on expanding and also on loading...

i did replaced...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" > with

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>

but not working..here is my treeview code

[Code]....and here is screenshot of treeview

View 7 Replies

Forms Data Controls :: Retain Scroll Position Of Gridview During Postbacks In Firefox - Chrome

Feb 3, 2011

I have a gridview with scroll enabled. Means i have a gridview like this-

[Code]....

I want during postbacks scroll position of my gridview will not change. I have tried many articles on the web, but in some scrolling is retained only in IE, in some others scrolling position changes on clicking edit link of gridview. I want a good solution for IE, FF, Chrome

View 1 Replies

Forms Data Controls :: Set Focus After Gridview Dropdownlist SelectedIndexChange Autopostback?

Feb 16, 2010

I have a Gridview that provides the user the student name for a particular class, a dropdown list to enter grades. If a grade of 'U' is given, a textbox appears in which the last day of attendance must be listed.

It works... though not as conviently as it could; the faculty would like to be able to tab from one dropdownlist to next in succession.

On each ddlGrades changes I write the value to the database and if a 'U' was chosen, display the textBox... but I can't figure how to set focus on the next ddlGrades control, or even the same ddlGrades control that initiated the postbock.

Below is my simplified .aspx followed by the codebehind

[Code]....

View 4 Replies

Controls :: Open PDF File In New Tab In Chrome - Firefox And Opera Browsers

May 7, 2015

My pdf file open in new tab using chrom and firefox.In opera it is open in new window.but i want pdf file open in new tab.

View 1 Replies

Web Forms :: Webpage Has Expired Only In IE Not Chrome Or FireFox?

Jan 14, 2011

I have an interesting issue. I made some changes to an existing code base. The changes were fairly minor in the aspect of the pages, I added an UpdatePanel and some input areas to upload a file and update a database to the site master. The reason I add it to the site master was it is being called to display via jQuery. I made some additional code changes on some existing code behind to add a web method to handle the data from another jQuery driven piece to set a value for a particular billing code.

None of this is out of the ordinary and in fact it only adds additional similar functionality that I have added over the last 9 months. The issue now is since I made the changes using the browser back button in IE generates the following:

Webpage has expired

This only occurs with IE. Chrome and FireFox works fine. Thinking it maybe the new input boxes I removed those and attempted to run the application again I get the same result. I know that IE requires a refresh if there is data that is submitted on the form that you are trying to go back to, however so does Chrome and Firefox as far as I know.

View 3 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

Web Forms :: Menu Control Appears Slightly Off In Chrome And Firefox?

Dec 4, 2010

The right sides of the dynamic menu items are being chopped off. Also, the entire menu is moved slightly to the left in both browsers. I have been searching for a solution but everything I find so far with Google talks about a problem with the menu not starting on the correct node but I am not having that issue.

View 2 Replies

Web Forms :: Date Control Is Not Working In Mozilla Firefox And Google Chrome?

Mar 28, 2011

I am using javascript based calendar control in my application.

Following is my .aspx and .aspx.cs file.:

.aspx file:

[Code]....

.aspx.cs:

[Code]....

On click of hyperlink we are opening javascript calendar and assiging it to textbox.

The same functionality is working in IE, but its not working in Mozilla firefox and Google chrome.

This is one of the major problem i am facing in entire application.

I want to make my application to be work fine on multiple browser.

View 1 Replies

Web Forms :: Menu Control - Small Hyperlink Area In Firefox And Chrome

Feb 16, 2010

I am having an issue with the hyperlinks that are created as part of a horizontal menu control. You have to position the cursor in a very narrow range near the very top of the menu option to find the hyperlink associated with that menu option. This is only the case with Firefox and Chrome. You can try it for yourself at [URL] Try clicking any one of the horizontal menu options ("Services" for example. You will see that it is very particular where it will allow you to click to activate the hyperlink. Markup:

[Code]....
Skin:

[Code]....
CSS:

[Code]....

View 2 Replies

Web Forms :: SiteMapPath Not Working On Firefox / Chrome And Safari Works Fine On IE

Jun 6, 2012

SiteMap is not clickable on Firefox,Chrome and Safari But works perfecly fine on IE..Here is the code;

div.logintext {
position: relative;
top: 25%;
display: table-cell;
vertical-align: middle;
text-align: left;

[code]...

View 1 Replies

Web Forms :: How To Maintain Scroll Position On Postback In Webpage In FireFox And Chrome

Feb 8, 2013

I tried some methods to maintain scroll position on postback but none worked they are

1) In page declaration MaintainScrollPositionOnPostback="true"

2) In Code behind  Page.MaintainScrollPositionOnPostBack = true

3)In web.config file in <system.web>  section <pages maintainScrollPositionOnPostBack="true" />

I am not using any updatepanel.

View 1 Replies

Web Forms :: TreeView Control Not Rendering Styles Correctly In Chrome, Firefox, Safari, But Fine In IE

Feb 15, 2010

I've defined node styles for my TreeView instance in markup (using <LevelStyles> for example). Everything renders correctly in IE7/8 but, when rendering in Chrome, Safari or FireFox, the styles are not being applied. From looking at the source code for the page, I can see that the various runtime css classes are being injected into the top of the page, but the class attributes on the <a> tags (within the generated TreeView HTML) are empty (class=""). In IE, the class attributes contain references to the classes that were injected into the page.

Can anyone explain why this is happening? I can see no logical explanation for this, and it's a big issue - My client primarily uses Safari, as they're Mac based.

View 1 Replies

.net - Vb.net Code Works On IE But Not On Chrome Or Firefox?

Jan 15, 2010

I have .net code that works on IE8 but wont work on google chrome or firefox. i have put this code for the user to press Enter instead of clicking the mouse everytime.

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Try
If Not IsPostBack Then

[code]...

View 3 Replies

Response.CacheControl Not Working In Firefox Or Chrome

Jan 15, 2010

i have this code in global.asax.vb, to disable the back button.

Sub Application_BeginRequest(ByVal sender As Object, ByVal e As EventArgs)
Response.Buffer = True
Response.ExpiresAbsolute = Now().Subtract(New TimeSpan(1, 0, 0, 0))
Response.Expires = -1
Response.CacheControl = "no-cache"
End Sub

this code works perfect in IE, but refuses to work in any other browser like firefox or chrome. what can i do to make it multi browser?

View 1 Replies

CSS Not Loading In Chrome And Safari But Works In Firefox And IE

Feb 21, 2011

I am giving external css path in aspx page via

<link rel="stylesheet" media="all" href="file:///D:/CSS/Style.css" type="text/css" />

its works fine in firefox and ie while access that page.

but when i open this page in chrome or safari.

it does'nt do anything and no css is applying.

View 3 Replies

Html - .net Site Looks Completely Different On IE, Firefox, And Chrome?

Jun 14, 2010

I'm doing css for a website. I send the html and css to a guy, he puts it into ASP.net. The problem is that the transfer didn't end well for my code and it needs some fixing. The problem is that when I look at it in Chrome, or Firefox, or IE8, I get three completely different renderings. I spent a good amount of time trying to fix a drop-down menu that is supposed to appear while hovering over a link. The one he had in place from ASP.net worked in IE, kinda worked in Firefox, and was completely broken in Chrome (I haven't tested Safari or Opera.) Just getting it to look basically the same in firefox and chrome was a struggle. The html source is showing me two completely different pages as well.

Does anyone have experience with this? I know nothing of ASP.net, and it seems like the guy is modifying my layout with a wsyiwyg (I found tables used in random places, which I did not put there.) Faced with this, what is my best option? Is this fixable, or am I in over my head?

View 3 Replies

Disabled Buttons Look Enabled In Firefox And Chrome?

Jul 7, 2010

Disabled buttons look enabled in Firefox and Chrome. I opened the same page in ie, firefox, chrome and this is the output:

"DashBoard" and "Calendar" are disabled
"Agent Info" is enabled.

Here I'm using normal asp buttons with css.What do I do?

View 2 Replies

JQuery Datepicker Only Works In IE8 (no Firefox, No Chrome For Me)?

Jan 11, 2010

Ok so I'm not very familiar with Jquery as to know the possible cause of this, but I've been assigned to find out why the datepicker doesn't work porperly on a client's computer (it prints out the date without slashes like this: 24112008

So when I test the webform, I see it doesnt even pop up in Firefox (the client's browser too) nor chrome, only in IE8.

In the scriptManager we have:

<script src="http://www.website.com/Script/jquery.min.js" type="text/javascript"></script>
<script src="http://www.website.com/Script/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://www.website.com/Script/jquery-ui-i18n.min.js" type="text/javascript"></script>

and in the webform:

$(function pageLoad(sender, args) {
// Datepicker
$.datepicker.setDefaults($.extend({ showMonthAfterYear: false }, $.datepicker.regional['']));
$(".dates").datepicker($.datepicker.regional['es']);
});

The textbox that uses it goes like this:

<asp:TextBox ID="txtFeNac" CssClass="dates" style="margin-left: 7px" runat="server" ></asp:TextBox>

View 2 Replies

Response.BinaryWrite Not Working In Firefox And Chrome?

Dec 7, 2010

I have binary data - it is png picture.

I use Response.BinaryWrite to display this picture.

Unfortunately it works only in Internet Explorer. In Firefox and Chrome it shows long text of strange symbols.

What's wrong with BinaryWrite? How to solve this?

I may not say to asp:Image to show this picture, I may not indicate ImageURL, becouse there's no URL. This picture is response from webrequest. And webrequest may not be indicated in URL because I set some parameters not in QueryString but in post data.

View 2 Replies

C# - Password Regex Works In Chrome And Firefox But Not IE7?

Jan 13, 2011

The following regular expression works in chrome and firefox, but not IE7:

^((?=.*d)(?=.*[a-z])(?=.*[A-Z]).{8,20})$

It needs to contain at least 8 characters and have at least on uppercase and a number. When I try this in IE7, I have to type 14 characters for it to validate. Can someone explain why and what would be the correct expression for all 3 browsers.

I am using an asp:RegularExpressionValidator to validate the password.

View 2 Replies

Activex Control To Work In FireFox And Google Chrome?

Feb 11, 2010

I developed a activex control, it can work well in IE, but not in firefox , is it possible for my activex control to work in FireFox and Google Chrome?

View 1 Replies

Popup Window Is Not Working In Firefox And Google Chrome?

Jan 27, 2010

I want to open a popupwindow (with close button only) when the user clicks a button and the parent window should be disabled until the popup window closed. For that I'm using the following code

function popup_window(url) {
popupwin = window.showModalDialog(url,null,'height=20,width=150,status=no,resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no');
}

Anyhow, this code is working perfectly in IE. But, I hav two problems. In firefox, it is not opening with the size I've mentioned in the script. It is opening in full size. And In Google Chrome, parent window is not getting disabled.

View 1 Replies

JQuery Menu Plugins Under MVC Only Work In Chrome Not In IE & FireFox

May 9, 2010

I was trying to prototype some jQuery-based menu into ASP.NET MVC. Just to name two examples here: [URL]Their demo page looks great, but when I integrate their sample code into MVC, the script no longer works in IE and FireFox, but it seems to work just fine under Google Chrome. Can someone kindly enough to point out what I missed? I will be honest here. I am still new to JavaScript. I have placed a copy of my VS2010 solution zip file @ [URL] Here is what I did. In the Site.Master, I have something like

<body>
<div class="page">{truncated...}</div>
<script src=[URL]" charset="utf-8"></script>
<asp:ContentPlaceHolder ID="ScriptContent" runat="server" />
</body>

And inside View file, I have the following

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<div id="original">
{some demo block, copied from javascript demo}
</div>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="ScriptContent" runat="server">
<script type="text/javascript" src="<%= Url.Content("~/Scripts/jquery.columnview.js") %>" />
<script type="text/javascript">
$(document).ready(function () {
$('#original').columnview();
});
</script>
</asp:Content>

Compiled the code and ran it under IE. Ideally, it should work like the demo in [URL], but in reality, it only displays unordered list in plain view. (If you download the solution file and run it, you should be able to repro this as well). Next, tried with FireFox, not working either, same result as IE. Finally, when I try it under Google Chrome 4.1 (lastest version), and the script displays just fine.

View 2 Replies

AJAX :: PageLoad Not Working On Firefox, Chrome Or Safari?

Apr 3, 2010

I've had an issue with a javascript menu not working inside an Ajax update panel after the ajax postback. I was able to solve this in IE by calling the menu js function with a pageLoad() function which is automatically called by ajax. However I then discovered it doesn't work in any other browser.

Having search around I've only found two references to the issue; one where someone else has found the same thing and another where someone states that pageLoad isn't stable in other browsers.

Is there any way to solve this issue in browsers other than IE?

View 1 Replies







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