mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-01-08 19:35:40 +00:00
9 lines
298 B
Plaintext
9 lines
298 B
Plaintext
<%@ Page Language="C#" %>
|
|
<%
|
|
//Get value
|
|
float value = float.Parse(Request.Form["value"]);
|
|
int productID = int.Parse(Request.Form["id"]);
|
|
|
|
Response.Write(string.Format("You voted {0} on product: {1}.<br/>Time on server: {2}", value, productID, DateTime.Now.ToString()));
|
|
|
|
%> |