Search

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

Matching Posts

  • Re: Multiple MVC Views/URL's

    I don't think it's accurate at all to say static pages are better than dynamic pages for SEO. Especially when developing in MVC, there is absolutely no reason what so ever why a static page will be more attractive to a crawler than a dynamic one. They key is to make sure the dynamic page renders the HTML properly, and that the elements (title, metas, h1 tags etc) are in the 'correct' order. The reason why I say 'especially when developing in MVC' is because you have so much
    Posted to ASP.NET MVC (Forum) by Sharbel_ on 11/21/2009
  • Re: MVC Worth it right now?

    Thanks for the replies guys. Just to chime in about data-access, we use Telerik's ORM and the project i intend to use MVC for will be using OpenAccess for the data layer. I've been playing with MVC the last few days, and I think I am liking it. One thing that I seem to be having a hard time adjusting to is UserControls. Is it just me, or do User Controls not access Controllers the same way that pages do? I am used to having a UserControl with code-behind files that handle all the logic for
    Posted to ASP.NET MVC (Forum) by Sharbel_ on 10/7/2009
  • MVC Worth it right now?

    Hi everyone, I am a long time web-form developer (since Beta 1) and I am just starting to look into MVC as a framework for our team to use to develop our web-apps. I have experience in Rails, so I am pretty familiar with MVC's concepts and how it works. I bought a book about .NET MVC v1 and it all seems pretty straightforward as far as how it works, the benefits, the trade-offs etc etc. Now, I am seeing MVC v2 is coming out with VS2010/ASPNET4 and I am starting to wonder if I should hold off
    Posted to ASP.NET MVC (Forum) by Sharbel_ on 10/5/2009
  • Re: MVC Worth it right now?

    Guys, thanks so much for the replies. It's encouraging to hear that move up to v2 will not be an ordeal. I am going to test a few other things but I think I am going to give MVC a try on this upcoming project. If any long-time webform developers want to chime in with their experience of moving over to MVC, I would appreciate it.
    Posted to ASP.NET MVC (Forum) by Sharbel_ on 10/5/2009
  • Re: page loading

    I dont think the update panel + progress indicator will show anything when a page is redirected to and is loading.. if the page is posting back to itself, then yes. I've never done it where the header/footer were loaded first then the center (you would almost have to call the center load with a web-service call on page load, to ensure the header/footer load, which is kind of silly). I have however, seen javascript that executes at the top of the page showing a progress indicator/loading message
    Posted to Getting Started (Forum) by Sharbel_ on 2/9/2009
  • Re: Asp.Net Development Server, Not outputting all HTML??

    Check your page source in the browser to make sure its not an HTML comment or CSS style that is causing the HTML to not render properly in the browser. It's very likely that the HTML is being sent out to the browser, just it's not being rendered correctly.
    Posted to Getting Started (Forum) by Sharbel_ on 2/9/2009
  • Re: Url Rewriting

    Just wanted to chime in for the benefit of others who might stumble on this thread to look for answer to a similar problem. A very common issue with URL re-writing is that you set the path to stylesheet, image etc by using a relative path, instead of an absolute path. So, you might reference your stylesheet like this: <link rel="stylesheet" href="style.css" type="text/css" /> But, with your URL rewriting, it would translate to a path of something like /rewritten
    Posted to Getting Started (Forum) by Sharbel_ on 2/4/2009
  • Re: update cookie from webmethod (PageMethod) using ajax

    I dont believe this is possible serverside, however, why not set the cookie in the OnSucess javascript method, with the key/value provided from the web-method?
  • Re: Page_PreInit

    Try Page_Init instead: protected void Page_Init( object sender, EventArgs e) { //do something... }
    Posted to Web Forms (Forum) by Sharbel_ on 8/28/2008
  • Re: scrollable hyperlinks -- is this possible?

    I would think you could set the table-cell with a css class to scroll when it goes passed a certain point... look into the overflow style element, something like this: .scrollingCell{ width: 250px; height: 100px; overflow: auto; } Then of course you would set the table cell to use this class: <td class="scrollingCell">
    Posted to Data Presentation Controls (Forum) by Sharbel_ on 8/28/2008
Page 1 of 118 (1179 items) 1 2 3 4 5 Next > ... Last »