I have a problem with loading *.aspx files on browser.
It actually displays the plain HTML instead of loading the proper webpage.
I used IE 11, Google Chrome 33.0 and Mozilla Firefox 27.0.1 and I had the same result.
Does anybody know what's the issue with it? Thanks in advance
Related
I have a link that should allow the user to download a csv file.
The follow code is working for chrome browsers.
<a href="path/myfile.csv">
Wen I try to do the same for Safari 10.0.3 (desktop) it redirects to the csv page, not download it.
I think I can not use the download attribute since it works only for Safari 10.1 +, based on this link info.
How to solve this issue?
Update your safari browser to the latest version. 10.0.3 does not support the HTML5 attribute download = "#"
I.E.
This will not work in Safari 10.0.3, for this version does not support HTML5 attributes.
I have a website richanime.com and it's a anime based website. The problem is when i load any of my posts the tabs don't load immediately. I've tried to load the jquery and jquery-ui.css internally and still no luck.
It loads a little bit faster on opera and chrome, but on firefox the page loads without and then with the css for the tabs. Can anyone please check it out, here's an example post: http://richanime.net/anime/fairy-tail-2014-episode-46/ (It's the tabs that say "Mp4Upload", "VideoNest" and such.
I use jquery-1.9.1.js and jquery-ui.js while jquery-ui.css loads in my style.css
I use wordpress. The problem lies on opera and and chrome too but firefox the most. Does anyone have any idea how to make it load immediately?
Here's some code: Style.css for tabs only
I've added some the css code that i use for the tabs. Hope it's enough.
I have a Spring App with ThymeLeaf and Dojo that is causing me a problem. The CSS files are showing up aborted in Firebug when I reference them from my HTML file. However, when I go directly to the file by putting a copy of the CSS URL in the address bar, it works. In addition, the Dojo code works, but it fails when it gets to the CSS file. So, I have tried a CSS link only and with Dojo and both fail. I have searched this one for hours, but I cannot find anyone else having this problem.
Thanks in advance,
Joe
Figured out the issue. I turned on debug on the server and tested a JS and CSS file. They both behaved the same from the server perspective and it looked like the CSS file was being sent correctly. So, I tried IE and it worked fine. After reinstalling Firefox, the software works as expected. Wish I had figured out this issue earlier
I'm trying to use telerik asyncUpload, it works fine in all browsers but in IE9, I should turn on compatibility mode in order to see my file upload process after I select the file, but in this demo site (http://demos.telerik.com/aspnet-ajax/upload/examples/async/webmail/defaultcs.aspx) it works fine in IE9 without need to turn on compatibility mode, how can I do something like this demo site for IE9?
when I select a file in browsers other than IE9, file name is displayed and a small progress bar showing file upload is also displayed, also a small remove button appears beside file name, but in IE9 I see nothing after select my file, I should turn on compatibility mode, I hope this description is helpful, but in demo site, everything works fine for all browsers, what am I missing?
also I'm going to store my images in database, do I need to perform postback? where I my files stored?
I found this article that sounds similar to the problem your having.
http://www.telerik.com/community/forums/aspnet-ajax/async-upload/select-button-with-not-show-the-select-files-window.aspx
Basically there has been a certain problem with the Flash module in IE9, which is related to the Flash. Which could be why your not seeing anything in IE9.
If this is the issue they suggest disabling the flash module with the following JS:
<script type="text/javascript">
Telerik.Web.UI.RadAsyncUpload.Modules.Flash.isAvailable = function () { return false; }
</script>
When I update a js file in my asp.net project, I refresh the browser and the change shows up as expected. If I change a css file or an .aspx file, the change does not show in the browser. Not when I clear the browser's cache, not when I restart IIS (iisrestart). What could this possibly be?
PS. I have tried chrome and firefox
Your browser loves to cache files such as CSS, JS and XML docments.
Do a "hard refresh" to tell your browser to download everything again.
Typically, it's CTRL-F5
You can also append a random number to the end of the file name so that it's never the same and the browser will snatch it up each time.
I have observed weirdness like this in chrome, but not firefox.
When you open it in firefox with firebug, are you seeing a 304 code? That might help separate server side issues from client issues.
I've had this problem a couple of times. Adding a random querystring value on the end of the URL for CSS seemed to fix things. So if your URL was /css/styles.css, just put in some code to add a random number on the end so the URL looks like /css/styles.css?random=2345.