Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <div id="user_receiving_request">
  2. <% using (Ajax.BeginForm("acceptDeclineAppointment", "Calendar", new AjaxOptions
  3. {
  4. HttpMethod = "Post",
  5. OnBegin = "OnAjaxBeginForm",
  6. OnComplete = "UserSiteAppointmentAjaxComplete"
  7.  
  8. })
  9. { %>
  10.  
  11. <table>
  12.  
  13. <tr>
  14. <td>Reason:
  15. </td>
  16. <td>
  17. <input type="text" id="reciveReason" name="reason" />
  18. </td>
  19. </tr>
  20. <tr>
  21. <td colspan="2">
  22. <button type="submit" name="acceptRequest" value="Accept">Accept</button>
  23.  
  24. </td>
  25. </tr>
  26. </table>
  27. <%}
  28. %>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement