/RoboZZle/RoboZZleWeb/myprofile.aspx

# · ASP.NET · 142 lines · 127 code · 15 blank · 0 comment · 28 complexity · a91f6246ee78f1aea87b2a03de69b08d MD5 · raw file

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="myprofile.aspx.cs" Inherits="myprofile" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <%@ import Namespace="RobozzleModel" %>
  4. <%@ import Namespace="System.Linq" %>
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7. <link href="../stats.css" rel="stylesheet" type="text/css"/>
  8. <title>RoboZZle User Profile</title>
  9. </head>
  10. <body>
  11. <div id="Div1" runat="server">
  12. <%= StatsCommon.MenuBar(MenuPage.None)%>
  13. <%
  14. string userArg = Request["user"];
  15. string passwordArg = Request["password"];
  16. string passwordHashArg = Request["passwordhash"];
  17. string updateArg = Request["update"];
  18. if (passwordHashArg == null && passwordArg != null) passwordHashArg = StatsCommon.HashPassword(passwordArg);
  19. bool foundUser = false;
  20. string errorMsg = null;
  21. string successMsg = null;
  22. if (updateArg != null)
  23. {
  24. string emailArg = Request["email"];
  25. string aboutArg = Request["about"];
  26. string websiteArg = Request["website"];
  27. RobozzleEntities entities = new RobozzleEntities();
  28. User user = entities.User.Where(r => r.Username == userArg && r.Password == passwordHashArg).FirstOrDefault();
  29. if (user != null)
  30. {
  31. user.Email = emailArg;
  32. user.About = aboutArg;
  33. user.Website = websiteArg;
  34. entities.SaveChanges();
  35. successMsg = "Profile successfully updated.";
  36. }
  37. else
  38. {
  39. errorMsg = "Profile could not be found.";
  40. }
  41. }
  42. if (userArg != null && passwordHashArg != null)
  43. {
  44. RobozzleEntities entities = new RobozzleEntities();
  45. User user = entities.User.Where(r => r.Username == userArg && r.Password == passwordHashArg).FirstOrDefault();
  46. if (user != null)
  47. {
  48. foundUser = true;
  49. %>
  50. <h1>RoboZZle User Profile for <%= user.Username%></h1>
  51. <%
  52. if (successMsg != null)
  53. {
  54. Response.Write(
  55. "<p class=\"successMsg\">" + Server.HtmlEncode(successMsg)
  56. + " <a href=\"/user.aspx?name=" + user.Username + "\">View the profile</a>"
  57. + "</p>");
  58. }
  59. if (errorMsg != null) Response.Write("<p class=\"errorMsg\">" + Server.HtmlEncode(errorMsg) + ".</p>");
  60. %>
  61. <form action="" method="post">
  62. <input type="hidden" name="passwordhash" value="<%= passwordHashArg %>" />
  63. <input type="hidden" name="user" value="<%= userArg %>" />
  64. <input type="hidden" name="update" value="1" />
  65. <div class="forumComment" style="width:300px">
  66. <table style="width:300px">
  67. <tr>
  68. <td style="width:60px;text-align: left;">Email:</td>
  69. <td style="text-align:left"><input name="email" type="text" style="width:200px" value="<%= Server.HtmlEncode(user.Email) %>" maxlength="250"/></td>
  70. </tr>
  71. <tr>
  72. <td colspan="2"><div style="margin-top:10px; margin-bottom:10px">If you have a <a href="http://en.gravatar.com">gravatar</a> associated with your email address, the gravatar will be shown in your profile.</div></td>
  73. </tr>
  74. <tr>
  75. <td style="width:60px;text-align: left;">About:</td>
  76. <td style="text-align:left"><input name="about" type="text" style="width:200px" value="<%= Server.HtmlEncode(user.About) %>" maxlength="450"/></td>
  77. </tr>
  78. <tr>
  79. <td style="width:60px;text-align: left;">Website:</td>
  80. <td style="text-align:left"><input name="website" type="text" style="width:200px" value="<%= Server.HtmlEncode(user.Website) %>" maxlength="150"/></td>
  81. </tr>
  82. <tr>
  83. <td colspan="2"><input type="submit" value="Update" /></td>
  84. </tr>
  85. </table>
  86. </div>
  87. </form>
  88. <%
  89. }
  90. else
  91. {
  92. errorMsg = "Invalid username / password";
  93. }
  94. }
  95. if (!foundUser)
  96. {
  97. %>
  98. <h1>RoboZZle User Profile</h1>
  99. <%
  100. if (errorMsg != null) Response.Write("<p class=\"errorMsg\">" + Server.HtmlEncode(errorMsg) + ".</p>");
  101. %>
  102. <p>To edit your profile, please enter your username and password:</p>
  103. <form action="" method="post">
  104. <div class="forumComment" style="width:220px">
  105. <table style="width:220px">
  106. <tr>
  107. <td style="width:60px;text-align: left;">User:</td>
  108. <td style="text-align:left"><input name="user" type="text" style="width:100px" value="<%= Server.HtmlEncode(userArg) %>"/></td>
  109. </tr>
  110. <tr>
  111. <td style="width:60px;text-align: left;">Password:</td>
  112. <td><input name="password" type="password" style="width:100px"/></td>
  113. </tr>
  114. <tr>
  115. <td colspan="2"><input type="submit" value="Continue" /></td>
  116. </tr>
  117. </table>
  118. </div>
  119. </form>
  120. <p><a href="/forgotpassword.aspx">Lost password</a></p>
  121. <%
  122. }
  123. %>
  124. <%= StatsCommon.Footer() %>
  125. </div>
  126. </body>
  127. </html>