vote up 0 vote down star

I have a javascript function that I need to call inside my body tags. My javascript fuction looks like this:

function NewExistingPicture(pictureName) {

    //code for javascript function
}

And this is what I'm trying to do in HTML:

Existing Photos:
<% foreach (var Photo in Model.ProductThumbnails) 
   { %>
      NewExistingPicture(<%= Html.Encode(Photo.PhotoName) %>) 
<% } %>

Obviously this isn't going to work, but I'm at a loss as to how to pass the function the information from the model.

flag

3 Answers

vote up 1 vote down check

Try this:

<script type="text/javascript">
<% foreach (var Photo in Model.ProductThumbnails) 
   { %>
      NewExistingPicture('<%= Photo.PhotoName.Replace(@"'", @"\'") %>'); 
<% } %>
</script>

(the .Replace() is to escape any single quotes in your string, so the string you're creating will be valid)

link|flag
Oh cool, I wasn't aware that the <% tags would get picked up – ajbeaven Aug 28 at 2:01
Assuming users have any control at all over photo names, this is not safe (XSS). – unknown (yahoo) Aug 28 at 4:45
Where's the XSS vulnerability? The .Replace guarantees that the entire photo name will be within the JS string, even evil input like "');alert('hacked');alert('". – kevingessner Aug 29 at 14:29
Does doing <% Htlm.Encode(//stuff here) %> do the same? – ajbeaven Aug 30 at 20:27
vote up 0 vote down

I think you'll need to do something like writting out a complete script section with all the javascript in it which is then run when the document has completed loading.

I think this might also be best written out from the controller code so you can set a variable and then insert that into the page.

<%= Model.Javascript %>

and in the controller;

ActionResult MyAction()
{
  myModel.Javascript = "<script>alert(9);</script";
  return View(myModel);
}

The above is completely untested but should work anyway me thinks.

link|flag
You would need to create a Javascript property on the Model. For the sake of example, you may be better off using ViewData. – JoshJordan Aug 28 at 1:13
Agreed but I'm just not a big fan of ViewData. – griegs Aug 28 at 1:26
vote up 0 vote down
<%@ Import Namespace="System.Web.Script.Serialization" %>
<% var js = new JavaScriptSerializer(); %>
...
NewExistingPicture(<%= Html.Encode(js.Serialize(Photo.PhotoName)) %>)
link|flag

Your Answer

Get an OpenID
or

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