URL With Cyrillic Querystring Not Working In IE (but Working In Firefox)
Dec 6, 2010
On our site, I use the category (in Russian) in the querystring. E.g.: [URL] (I notice the link is not clickable here, you need to copy the entire link to view the result) If you paste this link in IE8, it is translated to cat=???? and it does not work If I paste it in FireFox, it works. It gets even more weird: the same URL is reachable from the homepage, and if I click the same URL in IE8 from the homepage it works fine (unless I click open in a new tab, that it is back to ????). I am using ASP.NET 3.5(C#)
I created a one Java script calender. Its working fine in ie6 but its not working in firefox. I'm new to this java script so kindly give your suggestion as soon as possible.
After the implementation of ajax drag and drop, we have observed that which is working fine in IE and Firefox and not in chrome and safari, In Google chrome and Safari when we try to drag a module, the page getting scrolling to the top of the page.
If Not IsDBNull(ext) Then ext = LCase(ext) End If Select Case ext 'Case ".htm", ".html" ' type = "text/HTML" 'Case ".txt" ' type = "text/plain" 'Case ".doc", ".rtf" ' type = "Application/msword" 'Case ".csv", ".xls" ' type = "Application/x-msexcel"........................
I'm trying to get my site to play a flash video the first time, and only the first time, a user visits the site. Currently, I'm using ASP session tags to install a sessionid cookie into the users browsers.
<% Session("name")="blah" Session.Timeout=7 %>
This method works fine in FF and Chrome, but IE8 doesn't seem to want to accept the cookie. I've tested it with IE's lowest security settings possible ("Accept all cookies"), but it still does not create any cookie. Is there any other way to make it so that all browsers will take the cookie?
I have a problem with partial postback in FireFox in my index.aspx I have following code:
[Code]....
Finally my Partialview has following content:
[Code]....
This code is working fine when using IE or Google Chrome, but when using FireFox the code in my controller is never reached. I just can't figure out what I am missing
The Div can be visible or invisible in IE, but not in FireFox, the main purpose is: when user typing text in a password textbox, if the CAP LOCK is one, show the div:
We were deploying our ASP.NET web app onto a new production server today. In our test server, the pages were working fine on both IE and Firefox. But now in the production server the main welcome page loads and to enter the application which has a submit/enter button in it does not work in IE and shows a page not found exception. The same link is working fine in Firefox. We are using css and JavaScript and i have read that they may cause problems. But i wonder how i did not have any issues with both IE/Firefox in my test server.
I am using PostBackUrls in ASP.NET which work fine in Chrome and IE. Nothing happens when I select a button that has a PostBackUrl in Firefox. How can I make this work? Is there a bit of code that can be applied to all postbacks that I can add without the need of changing each of them individually?
Sample code below. Either I am doing something wrong or missing something in 4.0.
1: The function CheckText fires upon button click in IE but not in FF. 2: The function CheckText fires upon button click in IE /FF when the site runs under 2.0 or 3.5.
I have a WebForms app that uses a field validator on a dropdownlist. It works in IE but not FireFox. This is pretty straightforward stuff I'm doing. Here are the setups for the dropdown and validator:
I'm running ASP.Net 2.0 on the web server. Javascript is enabled on the FireFox browser-- this problem happens on all FF browsers I've tested, on multiple everyday machines, so I don't believe it's due to a locked down install.
I am using the javscript to popup a calendar when user click on calendar icon.So here I am using like "../calendar/calendar.html?datetime=" to trigger the calendar.html.But when I try to test it in IE its working but not in Firefox(It's not getting the correct url path).
I have a master page with accordion. Accordion binds link buttons inside datalist in its content template. Everything works fine but when i open this page in firefox my link buttons alongwith SignOut Link button stops working?
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?
Got really strange Firefox issue. Using the Microsoft __doPostBack javascript function in web forms page. Used for tab control, we have got each tab click calling the __doPostBack function. Works ok on my dev machine with all browsers but got a colleague who has an issue if he leaves the page idle for circa 3 -4 minutes. After this delay if he selects a new tab which calls the __doPostBack function the call to theForm.submit(); just hangs and get requested timeout. No .net calls are seen in Firebug. The __doPostBack event is called just theForm.submit() function just doesn't execute. If he does not have this idle time works ok. It is also ok for him on all other browsers.
I've created a simple form with a link button. In my page load I set default button to that linkbutton as this.Form.DefaultButton = this.btnSearch.UniqueID; it is working fine in IE but not in Firefox.