Web Forms :: Dowaload Is Not Working With Mozilla?
Jul 21, 2010
this is the code working fine with IE but not working in mozilla.
ResumeExists---is the physical location of file in my server
Response.Clear();
Response.ClearContent();
string path = Server.MapPath(ResumeExists);
string name = System.IO.Path.GetFileName(path);
string ext = System.IO.Path.GetExtension(path);
Response.AppendHeader("content-disposition", "attachment; filename=" + name);
Response.WriteFile(path);
Response.End();
View 2 Replies
Similar Messages:
Jan 15, 2011
I am using vs2008 pro. my problem is that javascript debugger is not working on mozila firefox but working fine on IE8.
View 1 Replies
Mar 18, 2010
Window.open javascript function is not working in Mozilla, but working in other browsers, here is what I have write.
<a href="javascript:window.open('../Terms.aspx','Terms','width=550,height=400')">
click here</a>
Actually what happened in Mozilla is popup is opened but parent window is blank with [object Window]
View 2 Replies
Jun 14, 2010
In my Application i write one javascript function as
Page.ClientScript.RegisterStartupScript(typeof(Page), "myscript", "<script >document.execCommand('SaveAs');</script>");
to save that file.
its working fine in IE but in firefox mozila that save as window is not comming.
which function will work for both IE and FireFox mozila.
View 1 Replies
Apr 4, 2011
Description:- hello code given below is working fine in i.e. and other but not working in all mozila version.javascript is simple to devide two textbox's value. you can easily understand.
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="javascript_test.aspx.cs" Inherits="javascript_test" %>
<!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" >
<script type ="text/jscript">
var _txtamount;
var _txtins;
var _txtinsamount;
[code]....
View 2 Replies
Mar 28, 2010
Is there a compatibility issue with asp.net imagebutton with mozilla browser. I have set a margin-left for an imagebutton but when I tried to view on mozilla, it does not work?
View 1 Replies
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
Apr 29, 2010
I want postback on click of treeview node .So i called a javascript function to do the same. I wrote the following ..On page load:
[Code]....
This is working fine in IE. But it is not working in mozilla and google chrome.
[Code]....
View 4 Replies
Nov 18, 2010
my asp.net web application is good looking in IE whereas in Mozilla, the css/skin i've used doesn't work. what's the solution
View 3 Replies
May 20, 2010
At page level I have set EnableEventValidation="false" and at Page_load below code is written:
Code:
grdMaster.Attributes.Add("OnClick", String.Format("{1};this.disabled = true;document.getElementById('lblProgress').innerHTML='Generating...It will take approx 30 Mins.'; {0};", ClientScript.GetPostBackEventReference(grdMaster, ""), ""));
Above coding is fine in IE but it does not work in Mozilla.
What could be the reason?and what is the solution on this?
View 9 Replies
May 27, 2010
This is my code for making textbox accept number only.
<asp:TextBox ID="txtRotationNo" runat="server" onkeydown="return NumberOnly();" CssClass="textbox"></asp:TextBox>
function NumberOnly () {
if(!(event.keyCode>=48 && event.keyCode<=57) && event.keyCode!=8) {
event.returnValue=null;
}
}
This code is working in Chrome and Opera, but not in firefox.
View 4 Replies
Nov 30, 2010
var newcpe = $find(cpe);
newcpe._doOpen();
I am using the above code to open the collasible panel. But its working in IE only. Not working in mozilla. But I can get the collapsible panel id in both the browsers by alert(newcpe);
View 4 Replies
Aug 9, 2010
In my application modal popup extender is not working in mozilla. but it is working well in IE 7 perfectly.
View 1 Replies
Jun 29, 2010
I have created a we app. using win authentication. When type the server ip addres in chrome I get the login window and it works just fine with my organizations credentials, however when doing the same using Internet Explorer I have to login with the server credentials as my account is not valid.
View 1 Replies
May 23, 2010
I wanna to use web broswer control with mozila firefox instead of IE.
how can i do that?
View 2 Replies
Oct 7, 2010
xml parsing error no element found location line number 1 column 1. If run every application this error come (in mozilla only). how to rectify this error.
View 1 Replies
Feb 16, 2011
I have problem while executing asp:button. The problem description is :
1. I have master page
2. I have asp:textbox to write values
3. I have asp:label to show values after response
4. I have asp:button to response user and write values into asp:label
5. After click button, in mozilla firefox 3.6 its not shown a values
This is my master page.aspx code :
[Code]....
this is my webform.aspx code :
[Code]....
this is my webform.aspx.vb code :
[Code]....
View 6 Replies
Apr 23, 2010
I've a webform which looks very orderly and properly formatted when opened in an IE browser while when the same form is opened in firefox it appears very distorted. One of the DDL's moves over on the top of the page while accessing the form in firefox.I've been using Visual Studio 2008 for the development.
I know this might sound very silly to some but I have been struggling with this issue for some time so decided to post it here.
View 4 Replies
Feb 22, 2010
i am using fileupload server control it's working fine in IE but when i execute the same code on Mozila firefox it showingCould not find a part of the path 'D:TestLogo what is the error and how to can i correct the error.
View 7 Replies
Feb 25, 2016
.scrollBarCol {
scrollbar-face-color: rgb(35,53,110);
scrollbar-arrow-color: rgb(155,203,235);
scrollbar-track-color: rgb(155,203,235);
scrollbar-highlight-color: rgb(35,53,110);
[Code] ....
I have used this code for changing the color of scroll bar but it does not work for mozilla.
View 1 Replies
Oct 19, 2010
Page_load event fires two time in firefox and the same page is working fine in IE. What might be the problem? If it is problem with Autoeventwireup then page_load event must fire two times in IE too. I believe it is not a issue of Autoeventwireup.
how can i find out exactly where the issue is.
View 2 Replies
Feb 16, 2011
I have problem that is I cannot see value after clicking button. this happens on mozilla firefox 3.6
1, I have a maste page,
2, I have a webform.aspx
3, I have a asp:textbox in webform.aspx
4, I have a asp:label in webform.aspx
5, I have a asp:button in webform.aspx and this control will process user input from textbox and write the value into label.
6, The process is not work on mozilla firefox 3.6
View 7 Replies
Jan 24, 2016
Please click <a onclick="self.close();" href="#">here</a> to close this window. this is my code .
when i submit in chrome and mozilla it shows the error.
" script must not be allowed to close a window that was not opened by that same script."
I tried with
function quitBox(cmd) {
if (cmd=='quit') {
open(location, '_self').close();
}
return false;
}
but it does not work for me
window.open('', '_parent', '');
window.close();
and also with this script.
how i close the tab on clicking the close tab.
View 1 Replies
Mar 8, 2011
I have 2 gridviews, grvSource and grvDestination. In grvSource, I have a checkbox and username to select the user. In grvDestination, I have an imageButton (imgRemove) and username. On checking the user in grvSource, I move the user to grvDestination. Clicking on imgRemove, move the user from grvDestination to grvSource. This is the requirement.
Since the checkbox does not have commandname, it will not trigger the rowCommand event. So I added a hidden linkbutton in grvSource. In rowdatabound I wrote a javascript to trigger the linkbutton click which will trigger the rowcommand event. In the rowCommand event, i check the commandname and move the user from grvSource to grvDestination.
View 5 Replies
Jan 10, 2011
I have just put a site on a production server for testing.However,the submenu is not visible in internet explorer but is on mozilla.The submenu is visible when run from the local host.
View 1 Replies