Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
3answers
5k views

Upgraded to MVC 3: CS0103: The name 'View' does not exist in the current context

I have just updated to ASP.NET MVC 3 RC2. The sample app I am working on now produces the following error, whenever a cshtml view is rendered: CS0103: The name 'View' does not exist in the current ...
8
votes
5answers
350 views

ASP.NET MVC RC2 - Why can't I use the normal validation options? e.g. RequiredFieldValidator

I'm trying to validate a basic form, can i not use the standard validation controls? Everywhere i'm looking seems to try and use something like the below <%= Html.ValidationSummary() %> <% ...
2
votes
2answers
479 views

How secure is 64-bit RC2?

In encryption, would two symmetric algorithms be considered to be equal in terms of security if their key sizes are equivalent? (i.e. does a 64-bit RC2 algorithm provide the same exact security that a ...
2
votes
1answer
765 views

ASP.NET MVC 2 RC: How to use the EditorFor to render correct name attributes for a List<>?

In the MVC RC 2 docs, we find: Expression-based helpers that render input elements generate correct name attributes when the expression contains an array or collection index. For example, the ...
2
votes
3answers
1k views

ASP.Net MVC RC2 ValidationMessage and form field conflict?

I am having problems with MVC RC2 where upon validation failure, the failed field will throw a NullReferenceException when the view is passed back to the user. A short term solution was found: which ...
1
vote
0answers
172 views

data-role=“none” not respected when calling trigger(“create”) in jQuery Mobile version rc2

We just updated from jquery mobile beta 2 to rc2. We had a custom button that we don't want jqm to initialize (add extra markup) so we used this: <button id="buttonid" ...
1
vote
0answers
636 views

RC2 decryption using CCCrypt

I'm trying to decrypt RC2 data with only 64 effective bits. Since I can only have 64-bits, it's my understanding that before calling CCCrypt I must use a method to reduce the key down to this many ...
1
vote
2answers
130 views

RC2 key schedule

Can someone explain how the RC2 key schedule works (particularly the very beginning of it)? i know it uses little endian, but my implementation is not working for any key except "0000 0000 0000 0000" ...
0
votes
0answers
89 views

Listview displays only first xml data in jquery mobile 1.0 RC2

I have the following function which is probably not as efficiently coded as it could be. Nevertheless, until I upgraded to jquery mobile 1.0 RC2 the data was retrieved and displayed correctly. Now, ...
0
votes
1answer
115 views

How do you add bitmaps to a .RC2 file?

I would like to include common resources into two of my applications. Rather than using a DLL, I figured I could include common resources at compile/link time by making use of a .RC2 file. I've added ...