Search

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

Matching Posts

  • Re: Mvc confusion

    @ Gerry I used the term "beta" because I know that it is the next version of MVC coming out. There are some people who have access to it early and have seen what is coming. I was referring to speculation as well as the tidbits of information that one can find regarding that. You are correct that the currently available one for the public is not a beta. It is a preview version. Since there is talk about the beta and it's on the road map with the details, I wouldn't expect long until
    Posted to ASP.NET MVC (Forum) by benrick on 11/3/2009
  • Re: Mvc confusion

    Not sure exactly what you're asking here. I'll just take a guess. The current version of the ASP.NET MVC Framework is version 1.0, so if you hear people talking about newer versions then they're referring to versions which aren't the "current" version. Some people are using betas of newer versions of the framework.
    Posted to ASP.NET MVC (Forum) by benrick on 11/2/2009
  • Re: Add control to a masterpage which is to be inherited

    Yeah, it is a little confusing sometimes. I always have to check and make sure people are using the right tool for the job. If you didn't need the value for javascript then session or viewstate really are better places for that kind of a value. Glad to hear that your issue is resolved. Brendan
  • Re: handle the button onclick event in masterpage in asp.net MVC

    With MVC you need to think a little bit differently. Instead of responding to button clicks you'll be working with actions. You will want the buttons to correspond to the actions of a controller. The controller will make the decisions of which view to show to the page. If these are small pages you could also try loading them all at the start and using javascript to switch between them. This would make it so that the submit button would save them all at once.
    Posted to ASP.NET MVC (Forum) by benrick on 11/2/2009
  • Re: Add control to a masterpage which is to be inherited

    [quote user="Dovdimus Prime"] The control obviously doesn't contain code blocks, and neither does the master page. I am mystified by this message. [/quote] Are you sure it doesn't? Keep in mind that since your adding the control in code you're going to have to consider that the content page using your masterpage exists. So if you have anything on the content page then it counts. Since your putting this on the base of all masterpages this error will continue to bite you. Do you
  • Re: routes works locally but not on productionserver

    As a general rule when working with routes you should use this tool. http://haacked.com/archive/2008/03/13/url-routing-debugger.aspx The route debugger will allow you to see which routes could have been picked as well as which route was picked and what values were passed using the route . You will be able to look at the differences locally as well as on the server. I am sure it will help figure this out.
    Posted to ASP.NET MVC (Forum) by benrick on 10/14/2009
  • Re: RESTful Web Service Strange error

    I am assuming hotelsModel is a separate class library project. Did you reference the assembly in your web application project?
    Posted to XML Web Services (Forum) by benrick on 10/14/2009
  • Re: Security Question and Answer

    You have a setting in web.config for your membership question and answer. <system.web> <membership> <providers> <add name="AspNetSqlMembershipProvider" .... requiresQuestionAndAnswer="false" /> </providers> </membership> </system.web> There will be more than this, but this snippet shows the important parts. You just need to change "RequiresQuestionAndAnswer" to false. I hope that helps.
    Posted to Security (Forum) by benrick on 10/14/2009
  • Re: Does a web service require it's own website?

    You are very welcome, cj. Don't forget to mark the posts that helped you as "the answer" to this thread.
    Posted to XML Web Services (Forum) by benrick on 10/14/2009
  • Re: Buttons in VB website

    If you are trying to use the button as navigation then you're taking the wrong route. For navigational purposes you should be using links. Remember this is a web site. Basically you want to use a hyperlink instead of a button and you want to set the NavigateUrl property of the link to the location you want to go. You really only use buttons when you are trying to submit data to the site from a form.
    Posted to Web Forms (Forum) by benrick on 10/14/2009
Page 1 of 38 (376 items) 1 2 3 4 5 Next > ... Last »