Ckeditor Will Not Work In FireFox?
Sep 27, 2010I'm using ckeditor in my page and it's work fine, except when I'm sending email. The mailbody is empty in FireFox, in IE it works fine. What can it be? Here is my code
[Code]....
I'm using ckeditor in my page and it's work fine, except when I'm sending email. The mailbody is empty in FireFox, in IE it works fine. What can it be? Here is my code
[Code]....
I am trying to implement a feature for my web site for library access. Normally users access the site with http://www.famnet.net.nz. This => a welcome/logon page, you may decide to register, etc etc. I programmed access from http://www.famnet.net.nz/library.aspx?userid=testlibrary. This URL (or one like it) is intended to be a link on a web page within a library: clicking the link opens the site with the user already logged on as "testlibrary", with some differences in function compared with an individual logon. This all works perfectly in my testing, using Firefox. However it does not work with IE7. I programmed diagnostic statements that should appear from all paths: but these don't appear with IE7 (but they do with Firefox).
View 5 RepliesI use the following code to write cache header on *.png requests:
response.Buffer = false;
response.BufferOutput = false;
// Emit content type and encoding based on the file extension and
// whether the response is compressed
response.ContentType = MimeMapping.GetMimeMapping(physicalFilePath);
if (mode != ResponseCompressionType.None)
response.AppendHeader("Content-Encoding", mode.ToString().ToLower());
response.AppendHeader("Content-Length", count.ToString());
// Emit proper cache headers that will cache the response in browser's
// cache for the default cache duration
response.Cache.SetCacheability(HttpCacheability.Public);
response.Cache.AppendCacheExtension("must-revalidate, proxy-revalidate");
response.Cache.SetMaxAge(DEFAULT_CACHE_DURATION);
response.Cache.SetExpires(DateTime.Now.Add(DEFAULT_CACHE_DURATION));
response.Cache.SetLastModified(lastModified);
But every time I refresh the page which contains the PNG URL, it will post to web server again. It seems that the cache header not work, and worse, it make the browser cache not work too. I am using asp.net mvc.
I am clicking one linkbutton to check the validators clientside in the panels. This works well in IE, but not in Firefox. When I click the button, it does not even hit the validateLength function
[Code]....
I have had an issue with someone who can't see the font colors of the labels on their screen, they are always black. he is using firefox on a MAC, chrome on mac works fine, but the firefox doesn't. Is this a known issue? Is there a fix for it?
View 6 Repliesafter I click the asp:button, mozilla firefox 3.6 never response my request. What should I do?I'm using vb.net to proceed.
View 7 Repliesi've log-in page in my site but log-in control doesn't work on any browser other than IE.
View 1 RepliesI've got a problem with my title displaying with the default template. It gets cutoff in firefox and IE 8 (in standards mode) by the content div.
View 1 RepliesI have a very simple Skin with the following:
[Code]....
And in my css I have the following:
[Code]....
The Basic Button CSS works in both browsers but my .BsicInput:focus CSS works only in Firefox. Any ideas about what is wrong?
here is the functionality which works in IE browser but not on firefox and chrome. I'm using
ModalPopUpExender.
I'm using ASP Menu .... It Works fine in IE ...but The Problem in Fire fox ... i put the asp menu inside Table Cell and I give Alignment Property for that cell to be right .....the Alignment for Childs in IE is Right Correct but in FireFox is Left :-( so how can I change the alignment for Childs to be Right and to work in Firefox
The ASP Menu Code in ASPX is :
[Code]....
It works in IE. I guess it could depends on that Firefox does not read I have a gridview showing images from a unc path like:
<asp:imagefield dataimageurlfield="Imageid"
dataimageurlformatstring="\ymerilderkomp_{0}.jpg" [code]...
Firefox is showing the alternativ text.
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 RepliesI 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.
I have a panel that is displayed in ajax popup. The panel has a div inside it. Overflow property for div is set to 'scroll'.
My problem is that when the page is displayed in firefox, scrollbar do not work. Scrollbars are displayed properly but nothing happens when I click on the scroll button or even on scroll bar.
Note: Page works great in IE. Also note that I was able to scroll using the scroll button of mouse in firefox.
see code from aspx file below.
[Code]....
I am not sure if I am posting this on the appropriate forum but I will give a try.
I have the following code:
[Code]....
[Code]....
[Code]....
I have the following controller:
using System;
using System.Collections.Generic;
using System.Linq; [code]....
When I click the action link in IE the controller code runs but the div is NOT updated. Do it in ANY other browser and it works just fine. Is this (yet another) known problem/bug with IE??
i write a page method and some sort of javascript to work with that method, everything fine in any browser but firefox!
[Code]....
<input id="offcheckcid" type="button" value="بررسی کلوب آی دی" onclick="CheckCloobID('offline');" style="color: Black;"/>
function CheckCloobID(sender) {
var id;
var email;
var button;
id = $get("ctl00_ctl00_cph1_cph1_offcid");
email = $get("ctl00_ctl00_cph1_cph1_offcpe");
button = $get("offcheckcid");
button.value = "کمی تامل نمائید...";
button.disabled = true;
id.disabled = true;
email.disabled = true;
PageMethods.CheckCloobID(id.value, email.value, 'offline', OnSuccess, OnTimeout, OnFailure);
}
function OnSuccess(result) {
var results = result.split("#", 2);
if (results[0] == "Accepted") {
var price = $get("offcut");
price.innerText = "30,000- ریال";
var total = $get("offtotal");
total.innerText = "570,000 ریال";
var button = $get("offcheckcid");
button.value = "تائید شد";
}
else {
alert("...کلوب آی دی و ایمیل محرمانه وارد شده وجود ندارد یا قبلا تخفیف گرفته است");
ActivateButtons();
}
}
the problem: onsuccess event did not work in firefox, no error message displayed in firebug...
I am using update panels with Update mode conditional in by aspx page. The page is functioning properlly in the IE.8.0 but the page content is not posting when i open it in the Google Chrome or Mozilla Firefox.
FYI I am using Update panels for drop down lists and buttons and in the triggers also i am using similar controls.
Does anyone now how I can make the drag/drop functionality of WebParts work in Firefox?
View 3 Repliesthe below works in Internet Explorer but not firefox.
protected void Page_Load(object sender, EventArgs e)
this.GridView1.Attributes.Add("bordercolor", "c3cecc");
I am very new in asp.net c#. I am trying to edit data from gridview button column click. the code is given below:
<asp:ButtonColumn ButtonType="LinkButton" CommandName='editpackage' Text="[Edit]">
</asp:ButtonColumn>
Once I click that button, OnItemCommand="datagrid_ItemCommand" method should be called.
Its working in IE but not in Firefox.
I've used some Jquery scripts for toggling image on a web user control, it work fine in explorer but got no signs of life in firefox!
Here the code for a test form in plain html (this works on every browser):
[Code]....
and in post-behind:
[Code]....
this is the toggle.js:
[Code]....
I have a GridView that is inside a Web User Control, that is inside an ASPX Page, that is wrapped by the Master Page.
Inside a GridView, I have a template field with DateTime type that has a TextBox inside EditTemplate. I extended this TextBox with CalendarExtender and it works ok in Internet Explorer.
I also have a DetailsView control on the same WebControl that I use to Insert new enrty. InsertTemplate for this field is the same as in GridView (Textbox with Calendar extender).
The problem occures when i click on the Edit link (or try click on the link that displays DetailsView in Insert mode for adding new entry) in any other browser: Chrome, Firefox, Opera.
The problem itself is that the calendar extender does not get poped out. I have a UpdateProgress Control on an ASPX page, that thie control is loaded into, that shows loading image while page is being posted back asynchronously.
In internet explorer the loading image is shown for jst a moment and then dissapears. Calendar extenders works perfectly.
As for the other browsers, the loader does not dissapear and none of ths postback links are working, as if it was waiting for the previous postback event or something else to finish. Finally I have to reload the page to get to the inicial stage or click a direct URL link to get somewhere else.
this code does not work in any other browser other than Internet Explorer, I could tell that happens, I've seen that in MVC2 was a known bug, I thought I updated to MVC 3 this was corrected, but still the same.The problem itself is that it shows as null ActionResult and I have no idea how to detect, the code I use is:
<% using (Ajax.BeginForm("CmdApply", new AjaxOptions { HttpMethod = "Post", UpdateTargetId = "RenderPartialId", Confirm = "Seguro de continuar", OnComplete = "showCurrentPage", OnBegin = "ShowBeginSearch", OnSuccess = "CloseDialogSearch" }))
{%>
<input id="GoPageSubmit" type="submit" name="GoPageSubmit" value="<%=Resources.s2olMVC.Search_GoPageTitle %>" />
<input id="SubmitNext" type="submit" name="SubmitNext" value=">"/>
<input id="SubmitNextLast" type="submit" name="SubmitNextLast" value=">>" />
<%}
%>
In ActionResult, the two n submit it recognizes, as if none, shown in Null There is another way to implement this type of submit? In Internet Explorer everything works fine.