Search Wiki:
Resource Page Description

This is a starter kit, which includes very simple user requirements, where we can create, read, update and delete (crud) the employee info of a company.

The primary purpose of this starter kit is, to provide a solid guideline with respect to building enterprise level projects, by utilizing new asp.net 2.0 and sql server 2005 features, as well as latest best coding practices.

The starter kit includes several cases where we can perform multi-table joining and/or write operations. Combining high performance and security features this starter kit shows how we can solve in real world problems and challenges, from a wide range of view point.

Quick link

Download latest version of Employee Info Starter Kit (Visual Studio 2005-2008 Edition):
http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=eisk&DownloadId=5474

Download latest version of Employee Info Starter Kit with Automated Tests (Visual Studio Team System 2008 Edition):
http://code.msdn.microsoft.com/Project/Download/FileDownload.aspx?ProjectName=eisk&DownloadId=5476
Last edited Apr 20 2009 at 1:16 PM  by joycsc, version 6
Comments
ehsanaiub wrote  Apr 13 2008 at 12:30 PM  
This is really awesome. Very helpful. This is exactly what I need. Thanks team :)

Jalal wrote  Apr 30 2008 at 1:34 PM  
surely a very useful starter kit. very useful than the other usual starter kits.

maparash wrote  Jun 20 2008 at 10:45 PM  
Damn useful kit !! Very helpful

colinp wrote  Jul 21 2008 at 5:56 PM  
Hi, have a version available in VB?

joycsc wrote  Jul 22 2008 at 11:47 AM  
not yet.. but good point..we'll consider in later release..thanks for input!

xadoa wrote  Jul 24 2008 at 6:32 PM  
Thanks a lot, I'll love to see a VB.NET sample. We are learning VB

oldguy85 wrote  Aug 20 2008 at 7:44 PM  
next...please?

jtarr wrote  Aug 22 2008 at 12:55 AM  
Can someone please let me kindly know where I am supposed to run the database script?

pani4ualways wrote  Aug 23 2008 at 11:36 AM  
Hi,

Thanks a lot for good and useful starter kit.

I used your starter kit code and log user in successfully with their roles, but I have problem to sign out the user. After sign out, the user still be able to go back to the security page without log in. I used MylogOn.Logoff to signout.

Please give me suggestion regarding this one.

joycsc wrote  Aug 25 2008 at 11:01 AM  
@ jtarr
Use SQL Server 2005 or SQL Server 2008 Management Studio.
You will find that: Start Menu -> All Programs -> Microsoft SQL Server 2005 -> SQL Server Management Studio.
Click "New Query" button at the top left, create or select a database where you wish to create tables or stored procedures and then just run the script.

Thanks

joycsc wrote  Aug 25 2008 at 11:02 AM  
@ All
Please use the discussion board to get the quicker response, as it contains automatic notifier and rss feeds.
Discussion board link: http://code.msdn.microsoft.com/eisk/Thread/List.aspx

joycsc wrote  Aug 25 2008 at 11:04 AM  
@ pani4ualways

This is a classical problem. To solve this, don't user browser cache in pages, use the code snippet as below. Please remember using this technique will affect your application performance.

//----------------- Browser cache clean code starts ------------------------------------

Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetAllowResponseInBrowserHistory(False);

//----------------- Browser cache clean code ends ------------------------------------

tandemonin wrote  Mar 25 2009 at 6:28 AM  
Someone could hel & give me a step by step guide on how to make it work or could guide me to setup the Employee Info Starter Kit? I appreciate much any simple contribution to make it work. Here's my email add: marasigan_n@hotmail.com. Thanks in advance.

dotnetmaestro wrote  Apr 17 2009 at 2:45 PM  
Thanks a lot for giving us enhanced eisk version.

joycsc wrote  Apr 20 2009 at 1:00 PM  
@tandemonin -- please check the latest and greatest version that includes a details documentation and tutorials.

webooth wrote  Sep 12 2009 at 6:33 PM  
Thanks for not including a VB version. Another wasted download.

HSchoefer wrote  Dec 1 2009 at 12:32 PM  
thank you very much

aarif wrote  Dec 19 2009 at 2:39 PM  
how to run this application! i m a beginner please guide me

LongtimeUser wrote  Dec 31 2009 at 4:37 AM  
How to run? So far, this is what's worked for me:
- Download the Zip;
- The top level in the zip archive is a folder "Eisk 2.2.0.1 - VS 2005-2008 Edition" with everything else under that;
- Decide where you are going to put the extracted files;
- Extract the files - I dragged the top-level folder in the zip archive to the location I wanted the files, and they extracted there.
- You will find more detailed instructions in a .doc file in the top-level folder you extracted to.

At this point, I need to say there's some detail missing in the .doc. It assumes you already have Visual Studio installed (reasonable assumption?), and the .sln file will open if you DOUBLE-click, or right-click and 'Open' (it is a registered file type for Visual Studio. The .doc also does not tell you, when you run, which IDE to select when asked. I assumed, wrongly, that it was C# (from comments about C# above), but it actually worked by choosing the "Web Developer" IDE.
That's what I know so far, and I haven't got any Databases set up (first time used VS/SQL Server (all Express) on my computer) - so if I work out more, I'll let you know.

joycsc wrote  Jan 29 at 2:04 PM  
@LongtimeUser thank you so much for your support.

Updating...
Page view tracker