Name 'IsNumeric' is not declared???

  • Thread starter Thread starter David Lozzi
  • Start date Start date
D

David Lozzi

OK, So I'm kinda new at ASP.NET, but why isnt IsNumber working? I'm using it as follows:

isnum = IsNumeric(StoreID.SelectedValue)

Thanks!
 
By the way, this is located in the code-behind. Also I am receiving a similiar error:

Type 'EventArgs' is not defined

at

Sub updateStore(ByVal sender As Object, ByVal e As EventArgs)

I appear to be missing somehting here?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


OK, So I'm kinda new at ASP.NET, but why isnt IsNumber working? I'm using it as follows:

isnum = IsNumeric(StoreID.SelectedValue)

Thanks!
 
I fixed it by add thing to the top of the page:
Imports Microsoft.VisualBasic
Imports System

:|


--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


By the way, this is located in the code-behind. Also I am receiving a similiar error:

Type 'EventArgs' is not defined

at

Sub updateStore(ByVal sender As Object, ByVal e As EventArgs)

I appear to be missing somehting here?

--
David Lozzi
Web Applications/Network Specialist
Delphi Technology Solutions, Inc.
dlozzi(remove-this)@delphi-ts.com


OK, So I'm kinda new at ASP.NET, but why isnt IsNumber working? I'm using it as follows:

isnum = IsNumeric(StoreID.SelectedValue)

Thanks!
 
Back
Top