ASP.net technical test

Associate
Joined
1 May 2007
Posts
1,901
Location
London
I have been sent an 'asp.net technical test' to do. Basically they provide the front end code and I just need to code the logic/back-end stuff. Fine, sounds easy enough.

So I finally get round to opening up the files they sent me and they have provided me with the following.

2 folders - images & css. I'm used to seeing that, so that's fine.

3 htm files. errr what? I was expecting some aspx pages with the html on.

I'm not asking anyone to help with the code, but how do I go about starting to solve this test? I was tempted to just copy the htm files into aspx pages and then stick my server logic in the code behind. But I have a feeling they dont want me to do that.

Or should I be using the htm files and registering a namespace at the top? e.g.

Code:
< % @ Register TagPrefix="CoreControls" Namespace="MyControls.CoreControls" Assembly="MyControls.KGCoreControls" % >

They are expecting a project they can open in VS 2008 and browse using built in server.
 
Cheers Goofball. I havent done any MVC before but I watched a video yesterday and it looked pretty straightforward so will prob go down this route.
 
They have provided html for 3 pages - start, game and score. The pages are identical except for overlays on the start and score pages, so I reckon a master page with views is definitely the way to go.

Can MVC make use of Ajax/partial postbacks?
 
Back
Top Bottom