mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-06-15 12:36:05 +00:00
Initial commit
This commit is contained in:
9
app/static/global/plugins/rateit/example/rateit.aspx
Normal file
9
app/static/global/plugins/rateit/example/rateit.aspx
Normal file
@ -0,0 +1,9 @@
|
||||
<%@ 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()));
|
||||
|
||||
%>
|
Reference in New Issue
Block a user