Hi,
I have a question about file included in ASP.NET. I have a file that
includes all the Sub functions (e.g FileFunct.vb). One of the functions
in this file is :
Sub TestFunct(ByVal strInput As String)
return (strInput & " test")
End Sub
I'd like to call this function in FileFunct.vb from another .ASPX file
like this :
<%@ import Namespace="System" %>
<%@ import Namespace="System.Data" %>
<html>
<head>
<title>Test page</title>
</head>
<body>
<script runat="server" language="VB" scr="FileFunct.vb" >
Sub Page_Load(s As Object, e As EventArgs)
Dim result=TestFunct("This is a string")
response.write("<BR>result ==> " & result)
End Sub
</script>
</body>
</html>
I've got this error:
Server Error in '/' Application.
----------------------------------------------------------------------------
----
Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs)
Line 19:
Line 20: Dim result=TestFunct("This is a string")
Line 21: response.write("<BR>Result ==> " & Result)
Line 22:
I have a single .ASPX file and I don't use Visual studio. NET in this case.
Can I do that ?
Thanks in advance. 10 23773
Make TestFunc shared and access it via
ClassName.TextFunc
so, it would look like
public class Utility
public shared TestFunct(..)
...
end function
end class
and you would use it like:
Utility.TestFunct(...)
Karl
--
MY ASP.Net tutorials http://www.openmymind.net/ - New and Improved (yes, the popup is
annoying) http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"bienwell" <bi******@hotmail.com> wrote in message
news:O7**************@TK2MSFTNGP10.phx.gbl... Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub
I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %>
<html> <head> <title>Test page</title> </head>
<body> <script runat="server" language="VB" scr="FileFunct.vb" >
Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html>
I've got this error:
Server Error in '/' Application. ---------------------------------------------------------------------------- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22:
I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ?
Thanks in advance.
You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or
you'll be visiting here almost daily, and writing crappy code until you do.
Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes.
A file defines a class, but IS not a class. A class is a data type, and
exists in the context of a running application. So, when you're talking
about how your application works, the first thing you need to do is think
about classes, not files. A file can contain one or MORE class definitions,
and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from
classes, and classes provide encapsulation. Object-oriented programming can
get pretty darned complex, and encapsulation can save you a lot of grief, by
hiding those things which need hiding from those things that don't need
them.
If you have a file with a bunch of Subs and Functions in it, you need to
create a class with Subs and Functions in it. These Subs and Functions can
be Shared (meaning that they are singleton objects that don't require a
class instance to operate), or they can be Instance (meaning that an
instance of the class containing them must be created in order to use them).
The advantage to Shared data and process is that it doesn't require a class
instance, and is, in essence "global," available to the entire application.
This is also the disadvantage of Shared data and process. Anything can get
to it, and change it, and in a multi-threaded app (unlike VB 6, .net is
multi-threaded), this can cause all sorts of problems. Unless you're
familiar with the issues, I would stick with classes that require
instantiation. Instantiation is the process of creating a copy (instance) of
a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend
(Friend is more protected than Public, but you shouldn't run into issues
right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a
good bit more education and practice. I would recommend the .Net SDK, a free
download from: http://www.microsoft.com/downloads/d...displaylang=en
It is extremely important to know the difference between ASP and ASP.Net,
between VBScript or VB 6, and VB.Net. The first are procedural,
single-threaded, and easy to use for small applications. .Net is
object-oriented, multi-threaded, and easy to use once you spend a great deal
of time studying it, but incredibly hard to use if you don't.
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
Everybody picks their nose,
But some people are better at hiding it.
"bienwell" <bi******@hotmail.com> wrote in message
news:O7**************@TK2MSFTNGP10.phx.gbl... Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub
I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %>
<html> <head> <title>Test page</title> </head>
<body> <script runat="server" language="VB" scr="FileFunct.vb" >
Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html>
I've got this error:
Server Error in '/' Application. ---------------------------------------------------------------------------- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22:
I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ?
Thanks in advance.
Kevin,
Last time I put all the files in my application (project name) using Visual
Studio.NET, declared a class (AClass) which has some functions, and saved
them in a file (.vb file). My program worked fine when I called the function
from my other .vb files (AClass.Function1, ...). My application was
Object-Oriented well development. Now, I'd like to try another way :
creating .ASPX file that contains VB.NET script, HTML and call one function
from another .vb file without using Visual Studio.NET. Can I do that and How
? It's my question.
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message
news:u7**************@TK2MSFTNGP15.phx.gbl... You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you
do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has
classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class
definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming
can get pretty darned complex, and encapsulation can save you a lot of grief,
by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use
them). The advantage to Shared data and process is that it doesn't require a
class instance, and is, in essence "global," available to the entire
application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance)
of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or
Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a
free download from:
http://www.microsoft.com/downloads/d...displaylang=en It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great
deal of time studying it, but incredibly hard to use if you don't.
-- HTH,
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it.
"bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl... Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the
functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub
I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %>
<html> <head> <title>Test page</title> </head>
<body> <script runat="server" language="VB" scr="FileFunct.vb" >
Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html>
I've got this error:
Server Error in '/' Application.
--------------------------------------------------------------------------
-- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22:
I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ?
Thanks in advance.
Karl,
I've tried it like this:
(In Function.vb file)
Public Class EFiling_Funct
Public Shared Function TestFunct(ByVal strInput As String)
return (strInput & " test")
End Function
End Class
================================================
(in File1.ASPX file)
<%@ import Namespace="System" %>
<%@ import Namespace="System.Data" %>
<html>
<head>
<title>Untitled</title>
</head>
<body>
<script runat="server" language="VB" >
Sub Page_Load(s As Object, e As EventArgs)
Dim result=EFiling_Funct.TestFunct("This is a string")
response.write("<BR>Result ==> " & Result)
End Sub
</script>
</body>
</html>
and received this error message :
Server Error in '/' Application.
----------------------------------------------------------------------------
----
Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'EFiling_Funct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs)
Line 19:
Line 20: Dim result=EFiling_Funct.TestFunct("This is a string")
Line 21: response.write("<BR>Result ==> " & Result)
Line 22:
"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:us**************@TK2MSFTNGP14.phx.gbl... Make TestFunc shared and access it via
ClassName.TextFunc
so, it would look like
public class Utility public shared TestFunct(..) ... end function end class
and you would use it like:
Utility.TestFunct(...)
Karl
-- MY ASP.Net tutorials http://www.openmymind.net/ - New and Improved (yes, the popup is annoying) http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to come!) "bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl... Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the
functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub
I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %>
<html> <head> <title>Test page</title> </head>
<body> <script runat="server" language="VB" scr="FileFunct.vb" >
Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html>
I've got this error:
Server Error in '/' Application.
--------------------------------------------------------------------------
-- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22:
I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ?
Thanks in advance.
Hi Kevin,
This article is what you need when using asp.net 1.1 http://aspnet.4guysfromrolla.com/articles/122403-1.aspx
It gest even simpler if you use asp.net v2. In this cas just drop the class
file in the App_Code directory and you can call them everywhere.
Let me know if you have any more questions...
Cheers,
Tom Pester You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming can get pretty darned complex, and encapsulation can save you a lot of grief, by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use them). The advantage to Shared data and process is that it doesn't require a class instance, and is, in essence "global," available to the entire application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance) of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a free download from:
http://www.microsoft.com/downloads/d...=9B3A2CA6-3647 -4070-9F41-A333C6B9181D&displaylang=en
It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great deal of time studying it, but incredibly hard to use if you don't.
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it. "bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl...
Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %> <html> <head> <title>Test page</title> </head> <body> <script runat="server" language="VB" scr="FileFunct.vb" > Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html> I've got this error:
Server Error in '/' Application. --------------------------------------------------------------------- ------- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22: I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ? Thanks in advance.
Sorry dude, it may be all YOU need, but my requirements go a good bit
farther.
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
Everybody picks their nose,
But some people are better at hiding it.
"tom pester" <To********************@pandora.be> wrote in message
news:a1**************************@news.microsoft.c om... Hi Kevin,
This article is what you need when using asp.net 1.1
http://aspnet.4guysfromrolla.com/articles/122403-1.aspx
It gest even simpler if you use asp.net v2. In this cas just drop the class file in the App_Code directory and you can call them everywhere.
Let me know if you have any more questions...
Cheers, Tom Pester
You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming can get pretty darned complex, and encapsulation can save you a lot of grief, by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use them). The advantage to Shared data and process is that it doesn't require a class instance, and is, in essence "global," available to the entire application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance) of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a free download from:
http://www.microsoft.com/downloads/d...=9B3A2CA6-3647 -4070-9F41-A333C6B9181D&displaylang=en
It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great deal of time studying it, but incredibly hard to use if you don't.
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it. "bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl...
Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %> <html> <head> <title>Test page</title> </head> <body> <script runat="server" language="VB" scr="FileFunct.vb" > Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html> I've got this error:
Server Error in '/' Application. --------------------------------------------------------------------- ------- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22: I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ? Thanks in advance.
I'm afraid anything but Best Practices is outside of my purview.
--
HTH,
Kevin Spencer
Microsoft MVP
..Net Developer
Everybody picks their nose,
But some people are better at hiding it.
"bienwell" <bi******@hotmail.com> wrote in message
news:eu**************@tk2msftngp13.phx.gbl... Kevin,
Last time I put all the files in my application (project name) using Visual Studio.NET, declared a class (AClass) which has some functions, and saved them in a file (.vb file). My program worked fine when I called the function from my other .vb files (AClass.Function1, ...). My application was Object-Oriented well development. Now, I'd like to try another way : creating .ASPX file that contains VB.NET script, HTML and call one function from another .vb file without using Visual Studio.NET. Can I do that and How ? It's my question.
"Kevin Spencer" <ke***@DIESPAMMERSDIEtakempis.com> wrote in message news:u7**************@TK2MSFTNGP15.phx.gbl... You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming can get pretty darned complex, and encapsulation can save you a lot of grief, by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use them). The advantage to Shared data and process is that it doesn't require a class instance, and is, in essence "global," available to the entire application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance) of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a free download from:
http://www.microsoft.com/downloads/d...displaylang=en It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great
deal of time studying it, but incredibly hard to use if you don't.
-- HTH,
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it.
"bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl... > Hi, > > I have a question about file included in ASP.NET. I have a file that > includes all the Sub functions (e.g FileFunct.vb). One of the functions > in this file is : > > Sub TestFunct(ByVal strInput As String) > return (strInput & " test") > End Sub > > > I'd like to call this function in FileFunct.vb from another .ASPX > file > like this : > > <%@ import Namespace="System" %> > <%@ import Namespace="System.Data" %> > > <html> > <head> > <title>Test page</title> > </head> > > <body> > <script runat="server" language="VB" scr="FileFunct.vb" > > > Sub Page_Load(s As Object, e As EventArgs) > Dim result=TestFunct("This is a string") > response.write("<BR>result ==> " & result) > End Sub > </script> > </body> > </html> > > I've got this error: > > Server Error in '/' Application.
-------------------------------------------------------------------------- -- > ---- > > Compilation Error > Description: An error occurred during the compilation of a resource > required > to service this request. Please review the following specific error > details > and modify your source code appropriately. > > Compiler Error Message: BC30451: Name 'TestFunct' is not declared. > > Source Error: > > > Line 18: Sub Page_Load(s As Object, e As EventArgs) > Line 19: > Line 20: Dim result=TestFunct("This is a string") > Line 21: response.write("<BR>Result ==> " & Result) > Line 22: > > > I have a single .ASPX file and I don't use Visual studio. NET in this > case. > Can I do that ? > > Thanks in advance. > >
Thanks, Tom. I did try it last time and it worked when I put all the files
in an application using Visual Studio.NET. My requirement now is to create
a single .ASPX file containing VB.NET language, JavaScript language and
HTML, and call a function from this .ASPX file without using Visual
Studio.NET to create an application.
..
"tom pester" <To********************@pandora.be> wrote in message
news:a1**************************@news.microsoft.c om... Hi Kevin,
This article is what you need when using asp.net 1.1
http://aspnet.4guysfromrolla.com/articles/122403-1.aspx
It gest even simpler if you use asp.net v2. In this cas just drop the
class file in the App_Code directory and you can call them everywhere.
Let me know if you have any more questions...
Cheers, Tom Pester
You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming can get pretty darned complex, and encapsulation can save you a lot of grief, by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use them). The advantage to Shared data and process is that it doesn't require a class instance, and is, in essence "global," available to the entire application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance) of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a free download from:
http://www.microsoft.com/downloads/d...=9B3A2CA6-3647 -4070-9F41-A333C6B9181D&displaylang=en
It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great deal of time studying it, but incredibly hard to use if you don't.
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it. "bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl...
Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub I'd like to call this function in FileFunct.vb from another .ASPX file like this :
<%@ import Namespace="System" %> <%@ import Namespace="System.Data" %> <html> <head> <title>Test page</title> </head> <body> <script runat="server" language="VB" scr="FileFunct.vb" > Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html> I've got this error:
Server Error in '/' Application. --------------------------------------------------------------------- ------- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30451: Name 'TestFunct' is not declared.
Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22: I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ? Thanks in advance.
If you use asp.net version 1 you need to compile the class file with the
command line compiler and put the created dll in the bin directory.
Check out this 2 part article : http://www.4guysfromrolla.com/webtech/112101-1.2.shtml
If you use asp.net version 2 just drop the class files in the App_Code and
that's it. The engine will compile all files in this dir and make it available
to the whole app without us to worry about compilation
Let me know if it helped you or not...
Cheers,
Tom Pester Thanks, Tom. I did try it last time and it worked when I put all the files in an application using Visual Studio.NET. My requirement now is to create a single .ASPX file containing VB.NET language, JavaScript language and HTML, and call a function from this .ASPX file without using Visual Studio.NET to create an application.
. "tom pester" <To********************@pandora.be> wrote in message news:a1**************************@news.microsoft.c om... Hi Kevin,
This article is what you need when using asp.net 1.1
http://aspnet.4guysfromrolla.com/articles/122403-1.aspx
It gest even simpler if you use asp.net v2. In this cas just drop the class
file in the App_Code directory and you can call them everywhere.
Let me know if you have any more questions...
Cheers, Tom Pester You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming can get pretty darned complex, and encapsulation can save you a lot of grief, by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use them). The advantage to Shared data and process is that it doesn't require a class instance, and is, in essence "global," available to the entire application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance) of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a free download from:
http://www.microsoft.com/downloads/d...Id=9B3A2CA6-36 47 -4070-9F41-A333C6B9181D&displaylang=en
It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great deal of time studying it, but incredibly hard to use if you don't.
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it. "bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl... Hi,
I have a question about file included in ASP.NET. I have a file that includes all the Sub functions (e.g FileFunct.vb). One of the functions in this file is :
Sub TestFunct(ByVal strInput As String) return (strInput & " test") End Sub I'd like to call this function in FileFunct.vb from another .ASPX file like this : <%@ import Namespace="System" %> <%@ import Namespace="System.Data" %> <html> <head> <title>Test page</title> </head> <body> <script runat="server" language="VB" scr="FileFunct.vb" > Sub Page_Load(s As Object, e As EventArgs) Dim result=TestFunct("This is a string") response.write("<BR>result ==> " & result) End Sub </script> </body> </html> I've got this error: Server Error in '/' Application. ------------------------------------------------------------------- -- ------- ----
Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: BC30451: Name 'TestFunct' is not declared. Source Error:
Line 18: Sub Page_Load(s As Object, e As EventArgs) Line 19: Line 20: Dim result=TestFunct("This is a string") Line 21: response.write("<BR>Result ==> " & Result) Line 22: I have a single .ASPX file and I don't use Visual studio. NET in this case. Can I do that ? Thanks in advance.
Thanks a lot, Tom. It worked fine now.
"tom pester" <To********************@pandora.be> wrote in message
news:a1**************************@news.microsoft.c om... If you use asp.net version 1 you need to compile the class file with the command line compiler and put the created dll in the bin directory. Check out this 2 part article :
http://www.4guysfromrolla.com/webtech/112101-1.2.shtml
If you use asp.net version 2 just drop the class files in the App_Code and that's it. The engine will compile all files in this dir and make it
available to the whole app without us to worry about compilation
Let me know if it helped you or not...
Cheers, Tom Pester
Thanks, Tom. I did try it last time and it worked when I put all the files in an application using Visual Studio.NET. My requirement now is to create a single .ASPX file containing VB.NET language, JavaScript language and HTML, and call a function from this .ASPX file without using Visual Studio.NET to create an application.
. "tom pester" <To********************@pandora.be> wrote in message news:a1**************************@news.microsoft.c om... Hi Kevin,
This article is what you need when using asp.net 1.1
http://aspnet.4guysfromrolla.com/articles/122403-1.aspx
It gest even simpler if you use asp.net v2. In this cas just drop the class
file in the App_Code directory and you can call them everywhere.
Let me know if you have any more questions...
Cheers, Tom Pester You're not thinking fourth-dimensionally! (- Back to the Future)
Actually, you're not thinking Object-Orientationally.
ASP.Net is object-oriented, and you'd better get acquainted with it, or you'll be visiting here almost daily, and writing crappy code until you do. Let me elaborate, if you will:
Files are source code. Your application doesn't have files. It has classes. A file defines a class, but IS not a class. A class is a data type, and exists in the context of a running application. So, when you're talking about how your application works, the first thing you need to do is think about classes, not files. A file can contain one or MORE class definitions, and you need to get acquainted with classes to be successful with .Net.
Classes are very important in .Net programming; Objects are made from classes, and classes provide encapsulation. Object-oriented programming can get pretty darned complex, and encapsulation can save you a lot of grief, by hiding those things which need hiding from those things that don't need them.
If you have a file with a bunch of Subs and Functions in it, you need to create a class with Subs and Functions in it. These Subs and Functions can be Shared (meaning that they are singleton objects that don't require a class instance to operate), or they can be Instance (meaning that an instance of the class containing them must be created in order to use them). The advantage to Shared data and process is that it doesn't require a class instance, and is, in essence "global," available to the entire application. This is also the disadvantage of Shared data and process. Anything can get to it, and change it, and in a multi-threaded app (unlike VB 6, .net is multi-threaded), this can cause all sorts of problems. Unless you're familiar with the issues, I would stick with classes that require instantiation. Instantiation is the process of creating a copy (instance) of a class that is limited in its scope (availability), and is thread-safe.
Once you create an instance of a class, you can access any Public or Friend (Friend is more protected than Public, but you shouldn't run into issues right away) members from any other class that references the instance.
From your question, and the code you posted, I can see that you require a good bit more education and practice. I would recommend the .Net SDK, a free download from:
http://www.microsoft.com/downloads/d...Id=9B3A2CA6-36 47 -4070-9F41-A333C6B9181D&displaylang=en
It is extremely important to know the difference between ASP and ASP.Net, between VBScript or VB 6, and VB.Net. The first are procedural, single-threaded, and easy to use for small applications. .Net is object-oriented, multi-threaded, and easy to use once you spend a great deal of time studying it, but incredibly hard to use if you don't.
Kevin Spencer Microsoft MVP .Net Developer Everybody picks their nose, But some people are better at hiding it. "bienwell" <bi******@hotmail.com> wrote in message news:O7**************@TK2MSFTNGP10.phx.gbl... > Hi, > > I have a question about file included in ASP.NET. I have a file > that includes all the Sub functions (e.g FileFunct.vb). One of > the functions in this file is : > > Sub TestFunct(ByVal strInput As String) > return (strInput & " test") > End Sub > I'd like to call this function in FileFunct.vb from another .ASPX > file like this : > <%@ import Namespace="System" %> > <%@ import Namespace="System.Data" %> > <html> > <head> > <title>Test page</title> > </head> > <body> > <script runat="server" language="VB" scr="FileFunct.vb" > > Sub Page_Load(s As Object, e As EventArgs) > Dim result=TestFunct("This is a string") > response.write("<BR>result ==> " & result) > End Sub > </script> > </body> > </html> > I've got this error: > Server Error in '/' Application. > ------------------------------------------------------------------- > -- ------- ---- > > Compilation Error > Description: An error occurred during the compilation of a resource > required > to service this request. Please review the following specific error > details > and modify your source code appropriately. > Compiler Error Message: BC30451: Name 'TestFunct' is not declared. > Source Error: > > Line 18: Sub Page_Load(s As Object, e As EventArgs) > Line 19: > Line 20: Dim result=TestFunct("This is a string") > Line 21: response.write("<BR>Result ==> " & Result) > Line 22: > I have a single .ASPX file and I don't use Visual studio. NET in > this > case. > Can I do that ? > Thanks in advance.
This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: moondaddy |
last post by:
I'm using vb.net and have an aspx page where I want to call a function in
the code behind to do something on the backend and I want to call this...
|
by: Tiraman |
last post by:
Hi ,
I have 3 files ,
middle.aspx file include the header.aspx and footer.aspx files .
in each of the include files there is a function and from...
|
by: Olivier Matrot |
last post by:
Hello,
This has probably been asked several times, but It must be clarified for me.
I would like to know why sometimes during a postback...
|
by: abcd |
last post by:
I am novice asp.net programmer.
I have xyz.js file which has resuable functions. I have asp.net form
abcd.aspx and the code behind file...
|
by: verci |
last post by:
Hi guys,
I'm running asp.net 2.0.
Does anyone know how to fire or call a javascript function from inside my
(VB.aspx) code without assigning it...
|
by: moni |
last post by:
Hi..
I am trying to use javascript for google maps display.
If I call the javascript function from my aspx file I use:
<input...
|
by: RandomElle |
last post by:
Hi there
I'm hoping someone can help me out with the use of the Eval function. I am using Access2003 under WinXP Pro. I can successfully use the...
|
by: Ajvan |
last post by:
Hi everybody,
I have one problem, and I hope some of you guys can help me with this.
I`m working in C# (Visual Studio 2005)...writing simple web...
|
by: sancti |
last post by:
hi ,
I am developing a webpage.I want to call a function from .aspx.cs file to .aspx file. i.e I have to pass the parameter from .aspx.cs file...
|
by: concettolabs |
last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
|
by: CD Tom |
last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
| |