I'm attempting to implement SlickUpload in VBHTML.

Using the C# Razor example I am getting a expression expected error.

.SelectorTemplate = 
    new Template(@<text> <a href="javascript:;">Add files</a></text>)

I think this is something to do with @, but I'm not sure. Is it possible to use the text syntax in vbhtml?

link|improve this question

67% accept rate
Show the full code block where you are using this. – Zach Green Feb 14 at 15:05
feedback

2 Answers

Just my initial guess without seeing the full code block, but the parameter to the constructor of Template should be in double-quotes.

.SelectorTemplate = 
    new Template("<text> <a href=\"javascript:;\">Add files</a></text>")
link|improve this answer
Tried that, didn't work. – cja100 Feb 15 at 12:32
feedback
up vote 0 down vote accepted

Turns out you need to add a lambda expression to the new template

    .SelectorTemplate = 
New Template(Sub() @<text> <a href="javascript:;">Add files</a></text> End Sub)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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