I have the following in the uploadError javascript function for AsyncFileUpload from AJAX toolkit:

function uploadError(sender, args) {
    document.getElementById("<%# uploadResult.ClientID %>").innerText = args.get_fileName(), "<span style='color:red;'>" + args.get_errorMessage() + "</span>";
}

Unfortunately the ClientID call returns Null, so the javascript errors.

I have also noticed that none of my controls have the usual .NET format once the page is loaded: E.G.:

<asp:Label runat="server" Text="Select an image to upload it to this stock item...." ID="uploadResult" /> 

Would usually render like this:

<span id="ctl00_ContentPlaceHolder1_uploadResult">Choose a webstock file to upload...</span>

But with this file it is rendering as:

<span id="uploadResult">Select an image to upload it to this stock item....</span>

I presume this is the same issue, but don't know why it's happening.

link|improve this question

57% accept rate
Not sure if you copy pasted, but check if there are any typos in runat="server" in actual code. Here seems fine – Madhur Ahuja Aug 22 '11 at 13:08
Also make sure you put full ending tag as in <asp:Label></asp:Label> – Madhur Ahuja Aug 22 '11 at 13:09
All runat attributes are all good and the full ending doesn't seem to make a difference. – Ben Drury Aug 22 '11 at 14:03
feedback

4 Answers

function uploadError(sender, args) {
    document.getElementById("<%= uploadResult.ClientID %>").innerText = args.get_fileName(), "<span style='color:red;'>" + args.get_errorMessage() + "</span>";

try like that

link|improve this answer
Unfortunately that causes the "The Controls collection cannot be modified because the control contains code blocks" error. – Ben Drury Aug 22 '11 at 13:32
feedback

set for your client ClientIDMode="Static"

OR set at page level <%@ Page ClientIDMode="Static"

link|improve this answer
Hi, I'm running .NET 3.5. If I remember rightly, this 4.0, isn't it? – Ben Drury Aug 22 '11 at 13:29
feedback

You can either set the ClientID mode to static, or you can try using UniqueID instead of ClientID.

link|improve this answer
Hi, I'm using ASP.NET 3.5 so ClientIDMode is not available. :( – Ben Drury Aug 24 '11 at 8:37
feedback

The problem is you are using the <%# syntax which is only executed on binding (evals).

You should be using <%= syntax which will always execute.

Eg:

function uploadError(sender, args)
{
    document.getElementById('<%= uploadResult.ClientID %>').innerText = 
        args.get_fileName() + "<span style='color:red;'>" + 
        args.get_errorMessage() + "</span>";
}

Reference for more information on asp.net inline syntax.

Data-binding Syntax

Inline Syntax

EDIT: Note you had , in your assignment to innerText which would also be an issue if it is not a typo.

link|improve this answer
Unfortunately that causes the "The Controls collection cannot be modified because the control contains code blocks" error. – Ben Drury Aug 24 '11 at 8:38
@Ben Drury where/when are you getting this error? Probably need more information as it sounds like there is something else outside of what you have provided causing that issue. Not the issue I posted in the bottom of my answer as you seem to have a typo as well that could be causing odd side effects. – Kelsey Aug 24 '11 at 14:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.