Search

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

Matching Posts

  • Re: CustomErrors and try-catch

    Hi Agapito, Thanks for the response. I appears so. I'm now more convinced that it could be the master pages throughing some exceptions.
    Posted to Web Forms (Forum) by ritcoder on 10/15/2008
  • Re: CustomErrors and try-catch

    Hi ZimingLi, I just look at the project again and realized that there is not Global.asax.cs. I think my best guess might be the master pages. The team has sent me another copy to review so I will keep master page idea in mind as I check the site. Thank you.
    Posted to Web Forms (Forum) by ritcoder on 10/15/2008
  • Re: CustomErrors and try-catch

    Thanks for the response. It used to work fine (I think). But I then started getting to the error page too often and realised that all thrown exceptions result in a redirection to the error page. I just received a new update to the project so I will see if the issue persists.
    Posted to Web Forms (Forum) by ritcoder on 10/13/2008
  • CustomErrors and try-catch

    Hi, I have an asp.net page with the web.config containing the code < customErrors defaultRedirect= "/error/Default.aspx" mode= "RemoteOnly" > In my home page, my page load looks like this 1 protected void Page_Load( object sender, EventArgs e) 2 { 3 Application[ "x" ] = "y" ; 4 string nextPage = null ; 5 6 7 if (!Page.IsPostBack) 8 { 9 //Check if client browser supports cookies 10 if (Request.Browser.Cookies) 11 { 12 13 #region Bridged Procedure 14 15
    Posted to Web Forms (Forum) by ritcoder on 10/10/2008
  • Re: Unable to connect to the ASP.NET Development Server

    Hi, I'm having the same problem. Tried everything. Editing the hosts file, adding the webserver to a different port. Same thing. I just created an asp.net ajax application. I did nothing other that typing hello world on the default page -> Hit f5 -> Waited for the asp.net webserver icon to show in the tray -> waited for some 6 min and was greeted with a dialog - unable PS: If I double click on the webserver icon in the tray and click on the link, the page loads fine. The issue is getting
  • Re: Deploy asp.net mvc application(HTTP 500)

    Hi, Thanks for the reply. I tried it but it still didn't work. I then created a simple asp.net web application and I still get the same error (Http 500). I get the feeling it is not the web application or configuration but the server itself. How do solve such an issue? Thank you.
    Posted to ASP.NET MVC (Forum) by ritcoder on 8/20/2008
  • Deploy asp.net mvc application(HTTP 500)

    Hi, I can see there have been a lot of post on this same issue but from the search I did, all the result were on the 404 errors. I'm an not getting that. The error I'm getting is Http 500 Internal Server Error. I have an asp.net mvc application. It is a one page application actually. Most of the stuff is dynamic. For the deployment, I set the extension as .aspx. It runs fine on the internal web server (I believe it's casini) but when I run it in the browser through the setup from IIS
    Posted to ASP.NET MVC (Forum) by ritcoder on 8/19/2008
  • Re: Does LINQ fit in?

    Is there any difference between using IEnumerable and IQueryable. I'm asking this because most of the examples I've seen use IQueryable.
    Posted to Architecture (Forum) by ritcoder on 7/26/2008
  • Controlled Json output

    Hi, Is there a way to control the json output when you use return Json( new XJsonResult { root = data.Get(id, start, limit, filter) }); I'm asking this because 1. I came across an issue with the date json output with my application in conjunction with my extjs framework. The output "/Date(1216897989281)/ " appears to be not recognised but instead "2008-07-29T00:00:00" or the normal "dd/mm/yy" or its variants are accepted. 2. I'm passing data to the client side
    Posted to ASP.NET MVC (Forum) by ritcoder on 7/25/2008
  • Re: JsonResult and Extjs

    Hi, I've been using Extjs for sometime now (ok, a week or two). I saw a couple of potential problems with your code 1. You reader: The totalProperty and the root appears to be the same. These are supposed to be the properties in the return data to map to Trying using the JsonStore. It is a combination of the store and the json reader. Yours will work if you make these changes (i hope) store = new Ext.data.JsonStore({ fields:[array of your fields], url:[your url] , root: [property that contains
    Posted to ASP.NET MVC (Forum) by ritcoder on 7/25/2008
Page 1 of 2 (12 items) 1 2 Next >