vote up 1 vote down star

I have a ASP.NET MVC application. The code in the aspx is like that

<input '<%= ViewData["Disabled"] %>' class="Text1" type="text" name='test' value='0'/>

ViewData["Disabled"] contains at this state a string =

'disabled="disabled"'

the result in firefox:

<input class="Text1" type="text" value="0" name="test" disabled="disabled"/>

the reuslt in ie8:

<input name="test" class="Text1" type="text" ?="" ?disabled="disabled" value="0"/>

Why is the output like this?

flag

solved it were the qoutes!! – Markus Sep 15 at 9:53

2 Answers

vote up 3 vote down check

Maybe try getting rid of the enclosing single-quotes:

<input <%= ViewData["Disabled"] %> class="Text1" type="text" name='test' value='0'/>
link|flag
vote up 2 vote down

I think it might be the quotes

Try:

<input <%= ViewData["Disabled"] %> 
       class="Text1" 
       type="text" 
       name='test' 
       value='0'/>

Kindness,

Dan

link|flag

Your Answer

Get an OpenID
or

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