Search

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

Matching Posts

  • Re: .NET 3.5 - Membership, Profile and Roles

    Up to my knowledge, there haven't been major changes to get worried about! Regards
    Posted to Getting Started (Forum) by SomeNewTricks2 on 10/16/2007
  • Re: Web service convertion

    Hello, You can use: wsdl.exe /si /o:WebServiceName.cs http://localhost/MyServices/WebService.wsdl The above line would generate for you a class that contains an Interface for all the operations mentioned in the WSDL file and class definition for all the Data Types specified in XSD in the Types section of the WSDL document. Is this what you are after? Regards
    Posted to Getting Started (Forum) by SomeNewTricks2 on 10/16/2007
  • Re: Generic Database Design

    Hello, What I am thinking of is to have a notion of Record. A customer is stored in one record and an order is stored in one record, a student is stored in one record, etc .... This includes only basic fields. Also, I want another table call it Property, that holds additional proeprties of each record. By using properties I can customize my database to configure any new website's objects with the propeties required. So you can think of having one framework for the database design that can fit
  • Re: Generic Database Design

    Hello, Thanks for the reply. My point is that I want to design a database schema that can fit any application. I mentioned about Record table. This table can hold information about any object regardless of its nature. All objects share a set of predefined fields. I can also assign to each object a number of properties that might be defined somewhere else also in another data table. My idea is to have a single Database Design that I can use to make it fit for any application. for instance, if I have
  • Re: Generic Database Design

    Thanks for the reply! Maybe I was misunderstood. I am asking about having a database design that fits all kinds of applications. I mean design the database once and use it for all my applications. I talked about notion of Record that can hold any object!! Any more ideas? Thanks
  • Generic Database Design

    Hello, Can someone please guide me to online resources or books on how to design generic database? I mean, I can have a "Record" that can have a set of fixed fields like: ID, Title, CreatedOn, etc ... and I can add as many properties I want to that record in a vertical way. Then based on the generic tables present, I can fit in the same table, a Record for Customer, a Record for House, a Record for Order. All share the same set of Fields, but each has its own set of proeprties. This way
  • Re: HttpModule Events not firing in ASP.NET 2.0

    This is driving me crazy! I downloaded a sample code for a video on the www.asp.net website that talks about HttpModule! It works fine, when I move the same HttpModule to my application, the module never runs!! Is there a special workaround we should do to make an HttpModule works on a website under .NET 3.0\5 on VS 2008 Beta 2 with Vista/IIS 7? Thanks
  • Re: HttpModule Events not firing in ASP.NET 2.0

    But I am placing the code in App_Code and not in a seperate assembly to specify MyModules! Anyone please? Thanks
  • HttpModule Events not firing in ASP.NET 2.0

    Hello, Please help me find why this HttpModule is not firing at all using System; using System.Collections; using System.Data; using System.Diagnostics; using System.Web; namespace MyModules { public class TestHttpModule : IHttpModule { public void Init(System.Web.HttpApplication Application) { Application.Error += new System.EventHandler(OnError); } public void Dispose() { } protected virtual void OnError( object sender, EventArgs args) { HttpApplication app = (HttpApplication)sender; app.Server
  • Re: WaitAny-WaitAll Confusion

    Hello, Thanks for the reply! My main point is, suppose we are using the BeginExecuteReader, cna I display the page without the data being retrieved for example "listing of articles", then once the data is back from the server, I can then show them? Or the idea in ASP.NEt is to fire several threads using the "BeginXX" methods,this way things would be faster, but the page to show all data should wait for all threads to come back? hope I made myself clear thanks
Page 1 of 37 (362 items) 1 2 3 4 5 Next > ... Last »