Skip to content

Commit

Permalink
step modify
Browse files Browse the repository at this point in the history
  • Loading branch information
khmukid committed Oct 11, 2015
1 parent dfb9c53 commit 7238d3f
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 13 deletions.
Binary file modified PSTU.v12.suo
Binary file not shown.
5 changes: 3 additions & 2 deletions PSTU/Controllers/StepsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ public class StepsController : Controller
// GET: /PSTUSteps/
public ActionResult Step(string id)
{
ViewData["step"] = id;
return View("Step"+id);
if (String.Empty == id) { id = Convert.ToString(1); }
ViewData["step_id"] =id;
return View("Step");
}
}
}
1 change: 1 addition & 0 deletions PSTU/PSTU.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -870,6 +870,7 @@
<Content Include="Contents\bower_components\raphael\bower.json" />
<Content Include="Views\Shared\_MasterLayout.cshtml" />
<Content Include="Views\Home\Home.cshtml" />
<Content Include="Views\Steps\Step.cshtml" />
<None Include="Web.Debug.config">
<DependentUpon>Web.config</DependentUpon>
</None>
Expand Down
21 changes: 10 additions & 11 deletions PSTU/Views/Steps/Step1.cshtml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
@{
Layout = "~/Views/Shared/_MasterLayout.cshtml";
}

<div class="panel panel-primary">
<div class="panel-heading">
Step 1
</div>
<div class="panel-body">

<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
page content here
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
@*<div class="panel-footer">
Panel Footer
</div>*@
</div>
<!-- /.container-fluid -->


Binary file modified PSTU/bin/PSTU.dll
Binary file not shown.
Binary file modified PSTU/bin/PSTU.pdb
Binary file not shown.
Binary file modified PSTU/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
Binary file modified PSTU/obj/Debug/PSTU.dll
Binary file not shown.
Binary file modified PSTU/obj/Debug/PSTU.pdb
Binary file not shown.

0 comments on commit 7238d3f

Please sign in to comment.