Last change
on this file since 8817 was
8384,
checked in by fschoepp, 12 years ago
|
#1888:
- Created a project which contains the back-end controller for the Optimization WebSite
- Added a WCF-back-end-controller which generates all available optimization problems (currently in-memory solution: PlaceholderControllerService.cs)
- Created a WebRole using ASP.NET MVC 3 for the Optimization Web Site
- WebSite authenticates users with the HeuristicLab.Authentication membership provider and database
- WebSite crawls and displays all available optimization scenarios by using the WCF-back-end controller (test with: http://localhost:.../optimization)
|
File size:
1.0 KB
|
Line | |
---|
1 | <!DOCTYPE html>
|
---|
2 | <html>
|
---|
3 | <head>
|
---|
4 | <meta charset="utf-8" />
|
---|
5 | <title>@ViewBag.Title</title>
|
---|
6 | <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
|
---|
7 | <script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
|
---|
8 | <script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script>
|
---|
9 | </head>
|
---|
10 | <body>
|
---|
11 | <div class="page">
|
---|
12 | <header>
|
---|
13 | <div id="title">
|
---|
14 | <h1>Optimization-as-a-Service</h1>
|
---|
15 | </div>
|
---|
16 | <div id="logindisplay">
|
---|
17 | @Html.Partial("_LogOnPartial")
|
---|
18 | </div>
|
---|
19 | <nav>
|
---|
20 | <ul id="menu">
|
---|
21 | <li>@Html.ActionLink("Home", "Index", "Home")</li>
|
---|
22 | <li>@Html.ActionLink("About", "About", "Home")</li>
|
---|
23 | </ul>
|
---|
24 | </nav>
|
---|
25 | </header>
|
---|
26 | <section id="main">
|
---|
27 | @RenderBody()
|
---|
28 | </section>
|
---|
29 | <footer>
|
---|
30 | </footer>
|
---|
31 | </div>
|
---|
32 | </body>
|
---|
33 | </html>
|
---|
Note: See
TracBrowser
for help on using the repository browser.