You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
298 B

  1. using Swift.web.Library;
  2. using System;
  3. namespace Swift.web
  4. {
  5. public partial class Error : System.Web.UI.Page
  6. {
  7. protected void Page_Load(object sender, EventArgs e)
  8. {
  9. errLogId.Text = GetStatic.ReadNumericDataFromQueryString("id").ToString();
  10. }
  11. }
  12. }