Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | <%@ Page Language="C#" %> |
| 2 | <% |
||
| 3 | //Get value |
||
| 4 | float value = float.Parse(Request.Form["value"]); |
||
| 5 | int productID = int.Parse(Request.Form["id"]); |
||
| 6 | |||
| 7 | Response.Write(string.Format("You voted {0} on product: {1}.<br/>Time on server: {2}", value, productID, DateTime.Now.ToString())); |
||
| 8 | |||
| 9 | %> |