Search

You searched for the word(s): userid:582468

Matching Posts

  • Re: File upload help

    Hello. did you check the name of the directory where you'tr ttrying to save the file? what version of IIS are you running?
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/9/2009
  • Re: A little confused with MVC RC on what code gets compiled

    Hello. MVC apps (by default) are application projects and that means that you need to add the files that should be compiled to the project on VS. btw, I'm curious: was that the problem (adding the file to the project on VS)?
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/8/2009
  • Re: How do I create dynamic themes in MVC RC 2?

    hello again. well, yes, you can and should use css for defining the look of the controls.Now, I undestand that using skins and themes make it easy to change the css from the server side (and they allow you to do tha without even writing any code). Now, the problem is that skins and themes are only applied to server side controls (ex.: textboxes, dropdown, etc. that were annotated with the runat="server" attribute). Since you're not supposed to use these controls on MVC apps, themes
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/8/2009
  • Re: How do I create dynamic themes in MVC RC 2?

    Hello again. 1. you are missing one thing: you need to change the inherits attribute of the master directive so that it points to your new master class 2. you shouldn't be using the auto event wire up. instead, override the method with the same name of the base class (ex.: OnPreInit, etc) 3. I'm not sure this is a valid option...I mean, handling page's preinit event from the master? If you read [1] you'll see that it might not be a good option. Instead, what you should do is create
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/8/2009
  • Re: Paging with jquery or msajax

    Hello again. Well, yes, the idea is similar, though you'll need to do more things because in this case you'll need to write code that passes the page to the server and, on the server side, you'll need to get the correct data and return it to the client. (with updatepanels you'd just drop a grid inside an updatepanel and wouldn't do anything for it to work).
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/8/2009
  • Re: Could not use App_Code folder

    Hello. app_code is a feature of the web site projects that were introduced with VS 2005. with MVC, you're really using a web applicaiton project. There are several differences between both project types which aren't really MVC specific. Probably you can get a better idea on what's going on by reading this: http://www.codersbarn.com/post/2008/06/01/ASPNET-Web-Site-versus-Web-Application-Project.aspx
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/8/2009
  • Re: Paging with jquery or msajax

    Hello. I've recently presented some ideas on how to add AJAX to your application. one of the options is really similar to what you get with UpdatePanels in traditional AJAX web forms applications. Check them on my blog: http://msmvps.com/blogs/luisabreu/archive/tags/MVC/default.aspx
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/7/2009
  • Re: How do I create dynamic themes in MVC RC 2?

    Hello. yes, by default you don't get codebehind files, but you can still add them if you need them (you'll need to add them by hand and you'll need to change the page directive on the aspx page/master page). I'm under the impression that themes are still supported and the event you mention should also be fired.
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 3/7/2009
  • Re: Radio Buttons and Form

    Hello. well, not sure on what you mean, but you can get it in several ways. for instance, you can use the Request object. Here's a quick example on how you can do that: http://msmvps.com/blogs/luisabreu/archive/2008/12/18/the-mvc-platform-the-htmlhelper-class-part-iii.aspx
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 2/24/2009
  • Re: Component. Confused ... how can I pull this?

    Hello. are you talking about subcontrollers? If so, I believe the MVC contrib project has support for it.
    Posted to ASP.NET MVC (Forum) by Luis Abreu on 2/24/2009
Page 1 of 536 (5356 items) 1 2 3 4 5 Next > ... Last »