Showing related tags and posts accross the entire site.
-
here's the sql script to create the table... Only EmployeeID field or the Ntlogin field is needed and should be a foreign key to the employee table CREATE TABLE [dbo].[tbl_Profiles]( [ProfileID] [int] IDENTITY(1,1) NOT NULL, [SystemID] [int] NULL, [EmployeeID] [int] NULL, [Ntlogin] [varchar](8) COLLATE...
-
Apparently the profile provider only works with asp.net websites and not asp.net web application projects in visual studio. Here's an article explaining why... http://webproject.scottgu.com/CSharp/Migration2/Migration2.aspx Appendix 2: Migrating Code that works with the ASP.NET 2.0 Profile Object...