Search

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

Matching Posts

  • Compile C Programs as .NET

    Is it possible to take a C program and compile it with VS.NET and then use it just as you would another .NET compiled application, such as C#?
    Posted to Other (Forum) by RobertLair on 3/7/2009
  • 404 Page Not Found

    For the second time in two days, I have had servers running ASP.NET 2.0 generate a 404 Page Not Found whenever PROCESSING an ASP.NET page. The page displays fine, but when you submit it, it appears to successfully do its work, but then I get a 404 error. Keep in mind, these are systems that have not been changed in a very long time. I looked in the event viewer and I am getting an Unhandled Exception. The two servers are completely different systems and have absolutely nothing in common. So I am
    Posted to Configuration and Deployment (Forum) by RobertLair on 11/21/2008
  • Re: Lost Javascript color coding and intellisense.

    For those that want some additional information, here is a blog post that describes the two variations of the Javascript Intellisense issue. http://blogs.msdn.com/jscript/archive/2007/09/24/javascript-intellisense-and-coloring-issues-in-vs-2008-beta-2.aspx
    Posted to Visual Studio 2008 (Forum) by RobertLair on 10/6/2007
  • Need Suggetions on Some 3rd Party Tools for Enterprise Application

    I have a few areas where I would like to get some input on. I am doing an assessment of different technologies that we can utilize in a enterprise level system we are building for a client. Here are the areas: Workflow Currently I am only considering Windows Workflow Foundation. Are there others that you would recommend here? Rules Engine We have been told to look at ILOG and INRULE for rules engines. I have not worked with either of these. Does anyone have an experience working with either of these
  • Re: Instantiating an Object Dynamcially (Generics?)

    Sorry :) The three classes are generated by a source code generator, and so therefore they cannot be modified (since they are regenerated whenever something changes in the database). If it is the only option, we may have to do it anyway, but I was hoping there would be a way to do this keeping the three classes unmodified. Sorry for the confusion. Thanks for taking the time to assist here! Bob
    Posted to C# (Forum) by RobertLair on 3/6/2006
  • Re: Instantiating an Object Dynamcially (Generics?)

    What if I am unable to modify the 3 classes?
    Posted to C# (Forum) by RobertLair on 3/6/2006
  • Instantiating an Object Dynamcially (Generics?)

    Hello everyone. I am not certain if this is good place for generics or not, but here is my scenario. I have many classes that all share the same basic properties and methods. They are generated with a code-generator, so I really have little control over them. They are all classes that handle the basic data access for a number of pick lists (look up tables). For example: SupplierStatus, FinancialRating, CommercialRating, etc. They all have three properties: ID, DisplayName, and Active (bit). Instead
    Posted to C# (Forum) by RobertLair on 3/6/2006
  • ASP.NET 2.0 Forum Control

    Does anyone know of a good ASP.NET 2.0 control to handle forums? I need a solution that I can use in an existing framework so as far as I know, community server will not work. Any ideas I would appreciate it
    Posted to Component Discussions (Forum) by RobertLair on 1/7/2006
  • Re: Issue setting Session Variable on Global ASAX in Application_Error Method

    Session state works elsewhere on the site. Again, I don't think it really is Session State that is the problem. I say this because I was first trying to do my error logging IN the Application_Error method. But the exception returned by Application_Error was null. So it doesn't APPEAR to be a session problem. Rather it seems to be an issue with the GetLastError() method. Any idea why in two development environments GetLastError() would return the exception, but then in the production environment,
    Posted to Web Forms (Forum) by RobertLair on 10/10/2005
  • Issue setting Session Variable on Global ASAX in Application_Error Method

    I am trying to set a session variable in the global asax Application_Error and read that session variable value on the code behind of my custom error page: In the Application_Error in global.asax I now have the following code: Exception exception = Server.GetLastError(); Server.ClearError(); Session["LastError"] = "test"; Response.Redirect("ErrorPage.aspx); Then, on my custom error page I have this code: this.Label2.Text = Session["LastError"].ToString(); This works on BOTH of my development machines
    Posted to Web Forms (Forum) by RobertLair on 10/10/2005
Page 1 of 4 (34 items) 1 2 3 4 Next >