Questions tagged [eisk]

Use this tag to ask or give response to any question related to EISK (Employee Info Starter Kit), an open source project starter kit.

EISK provides a solid guideline for building enterprise level projects, by utilizing new asp.net and sql server features, as well as latest best coding practices. It includes but not limited to:

To know more about EISK, check following references:

Use this tag to ask or response any question related to EISK (Employee Info Starter Kit), an open source project starter kit.

4 questions
3
votes
1 answer

ObjectStateManager does not contain an ObjectStateEntry with a reference to an object of type

I am using EISK (Employee Info Starter Kit) to develop an application. My entity diagram looks like this I try to update the application table via this code. int apId = Convert.ToInt32(Request.QueryString["ApplicationID"]); …
ademg
  • 197
  • 2
  • 4
  • 17
2
votes
4 answers

Regex the extract two string a text in jmeter

I want to extract VIEWSTATE value and EVENTVALIDATION value, but I havent. How to extract two string(viewstate and eventvalidation) from this text?
Tester
  • 531
  • 1
  • 4
  • 9
1
vote
1 answer

Where does an MVC Controller get it's database context at run time

Given this code: namespace Eisk.Controllers { public class EmployeesController : Controller { DatabaseContext _dbContext; public EmployeesController(DatabaseContext databaseContext) { _dbContext =…
1
vote
2 answers

C# programmatically communication with website

I have following problem. Example site http://eisk.apphb.com/web-form-samples/listing-page.aspx My c# application has to read data from gridview, but only for specific supervisor, so i need to change programmatically value in drop down list. I have…