Hi Joe,
Yes I think it is derived from System.Web.UI.Page!!!
This is my codebehind code. Now I try to add this in my project, and it doesn't show up in the Sol Explorer:(
Imports System
Imports System.Web.UI
Imports System.Web.UI.WebControls
Imports System.Web.UI.Page
Public Class MyCodeBehind : Inherits Page
Public strOutput as String
Public strConnection As String
Public Sub SetstrConn
strConnection="data source=QMWORKS;User ID=praveen;Password=********;database=crustali;Connect Timeout=30;"
End Sub
Public Sub btnCancel_Click(Sender as Object, E as EventArgs)
Response.Redirect("Homepage.aspx")
End Sub
Public Sub LogOutClick(sender as System.Object, e As System.EventArgs)
Session.Abandon()
Response.Redirect("Login.aspx")
End Sub
Public Structure Product_Info
Dim Name As String
Dim Unit As String
Dim Species As Integer
End Structure
Public Structure CruiseDataSet
Dim DataSetName As String
Dim TractStandName As String
Dim TallyType As String
Dim CruiseType As String
Dim PlotBAFSize As Single
Dim NumberOfPlots As Integer
Dim AcresInTally As Single
Dim ProductInfo() As Product_Info
End Structure
Public Structure DataSetProdSpec
Dim SpeciesName As String
Dim MinDBH As Single
Dim MaxDBH As Single
Dim DBHInt As Integer
Dim HtMeasure As String
Dim LogLen As Single
Dim MinHt As Single
Dim MaxHt As Single
Dim HtInt As Single
Dim VolEq As Integer
Dim FrmCls As Integer
Dim LRule As String
Dim TblName As String
Dim No(,) As Integer
End Structure
End Class