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.
16 lines
473 B
16 lines
473 B
Public Class Report_Definition
|
|
Inherits System.Web.UI.Page
|
|
|
|
|
|
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
|
|
|
|
End Sub
|
|
|
|
|
|
Protected Sub btnUppload_Click(sender As Object, e As EventArgs) Handles btnUppload.Click
|
|
Dim destfn As String
|
|
destfn = System.IO.Path.GetFileName(Me.FileUpload1.FileName)
|
|
Me.FileUpload1.SaveAs(Server.MapPath("~/Reporting/") + destfn)
|
|
End Sub
|
|
|
|
End Class |