Search

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

Matching Posts

  • Re: Subfolders in View

    AreaViewEngine you're searching for! an extended areaviewengine you can find here http://code.google.com/p/myextensions/
    Posted to ASP.NET MVC (Forum) by shunzimm on 1/11/2009
  • Re: How to run a MVC App on sub-folder ?

    AreaViewEngine you're searching for! an extended areaviewengine you can find here http://code.google.com/p/myextensions/
    Posted to ASP.NET MVC (Forum) by shunzimm on 1/11/2009
  • Re: Dynamic Data Preview 2 Released!

    Paging Action Failed In EF Samples!
    Posted to ASP.NET Dynamic Data (Forum) by shunzimm on 12/17/2008
  • You Most Wanted jQuery MVC Form Extensions and AutoLoad Sample By Feng Lu

    var jMvc = new object(); jMvc.ajaxForm = function(formId) { trigger = $("#" + formId + " input[@type=submit]:first"); if (!trigger) return; trigger.click(function(event) { var f = $("#" + formId); var act = f.attr("action"); var serializedForm = f.serialize(); event.srcElement.disabled = true; $.post(act, serializedForm, function(res) { trigger.removeAttr("disabled"); }, "json"); }); } $(document).ready(function() { //autobind ajax event
    Posted to ASP.NET MVC (Forum) by shunzimm on 10/15/2008
    Filed under: jquery mvc
  • Re: Beginer Question Abount PV5

    http://forums.asp.net/t/1330769.aspx has the answer,I found it! levib : Preview 5 has a bug where we don't always take the controller name into account when looking up view locations. This will be fixed for the next release. For now, the workarounds are to leave the Debug setting as true or to explicitly specify the path to your view [e.g. return View ("~/Views/Home/About.aspx "); ]. Alternatively, if you feel like modifying the MVC source code directly and recompiling, you can remove
    Posted to ASP.NET MVC (Forum) by shunzimm on 10/15/2008
  • Re: Shared hosting and ASP.NET MVC

    My answer is "Yes",the hoster needs to add .mvc mapping in his IIS. But ,if You don't have the administration rights of the romote IIS server, You should try this workaround : updated the Routetable to have .ashx extension infront of controller,enjoy!
    Posted to ASP.NET MVC (Forum) by shunzimm on 10/15/2008
  • Beginer Question Abount PV5

    I Created a MVC PR5 Project with the default project template. Everything's fine untile I Add a new Controller. When I visited the url /NewControllerName/Index the controller Render the ViewPage /Home/Index instead. Why? What can I do? Have I missed something?
    Posted to ASP.NET MVC (Forum) by shunzimm on 10/15/2008
  • how to add html code to htm,html,php,asp ? httphandler ,httpmodule?

    I need a solution to add a some html code or js to all the web pages of a web site. i write a httphandler and config the web.config file : <httphandlers> <add path="*.htm" verb="POST,GET" type=""/> </httphandlers> by it not worked. and i tried httpmodules and global.asax , and it looks like aspnet can't handler the pages of asp/htm/html. anyone could tell me how to resolve this,many thanks!!!
    Posted to HttpHandlers and HttpModules (Forum) by shunzimm on 6/24/2007
    Filed under: HttpHandler
  • Re: Ajax Beta 1, UpdatePanel and Viewstate issue : resolved

    protected override void SavePageStateToPersistenceMedium(Object pViewState) { Pair pair1; System.Web.UI.PageStatePersister pageStatePersister1 = this.PageStatePersister; Object ViewState; if (pViewState is Pair) { pair1 = ((Pair)pViewState); pageStatePersister1.ControlState = pair1.First; ViewState = pair1.Second; } else { ViewState = pViewState; } LosFormatter mFormat = new LosFormatter(); StringWriter mWriter = new StringWriter(); mFormat.Serialize(mWriter, ViewState); String mViewStateStr = mWriter
    Posted to ASP.NET AJAX UI (Forum) by shunzimm on 11/24/2006
    Filed under: ajax update panel, asp.net ajax
Page 1 of 1 (9 items)