I am supposed to create a documentation on all the classess that are created using VB . Is there a way in VB that will generate a html page which shows all the class and methods in it. this way i can cut short the time of writing the all the details....
I am trying to validate a persons FTP access (username and password) but I cannot find a way, in .net 1.1, to logon to an FTP server. In 2.0 there is a class for it but how do I do this in 1.1?
I'm looking for a class or a library of functions for classic ASP 3.0 (no .NET) to manage matrix (bi-dimensional arrays) with simple math functions such as sum on the row/column, shift of row, shift of columns and so on...
Does anybody know if there's something available on the net?
In trying to reduce database calls, I've created a class (we'll call it MyClass) which is created in the login page. I'm trying to store it in a session variable, and when I call the code:
Class Security ... End Class
SET objSecurty = new Security .... Session("Security") = objSecurity
On the session() = line, I get the error:
Session object error 'ASP 0185 : 80020003' Missing Default Property /login.asp, line 123 A default property was not found for the object.
I have a Class and i want to be able to use its instance example public class Enrolltest : System.Web.UI.Page { MyClass mc = new MyClass();
mc.mymethod();
}
when i do this i get an error telling me there is no name space what should i do .,,. i dont want to create a dll and add it to assembly and all that stuff.
I am working with a bunch of old code so I can really restructure the includes, otherwise I guess I could change all the #include statements to #include-once. Anyway, If I have a file with a class like this:
Class myClass end class
I get a "name redefined" error. I've been seeing these and indeed from goolge searches, it's because the file is somehow included more than once. This problem doesn't occur for functions and the old code bases just used functions whereas I would like to add some classes. In C you used to be able to detect that at the top of the file and not included the rest of the file if it is allready included. I just want to at least detect it so I don't redeclare the class.
I'm having problems with getting numbers to add in asp. I cannot find anything in my book on adding numbers together. All it says "you cannot add values from a textbox". I guess I'm having a brain-fart in a major way.
I working on a program to calculate the totals of rainfall for a year. Give the month that has the max and min and show amount, and show average for the year. Can some please tell me where to start or a code snippet to get me back on track. Code:
I have written a JAVA class.it have compiled with -target 1.1 arguement and I just can instant it twice time.I can instant it at the first time and second time.When I try to instant it anymore,it prompt me "The remote procedure call failed and did not execute." message.What does it mean?
After,I need restart my web server.My java is used to create new socket and connect to other server.I am using getObject("java:classNameHere") method
I am running WinXP Pro and have IIS 5.1. I am developing a web site locally - everything was fine until today when I tried to preview the site I got a 'class does not exist' error (in case you ask I have turned off friendly http errors and this is the message I get). This message is also displayed when I try to access my local host.
Are there any good free vbscript classes for handling mySQL databases? Or even a good tutorial on how to write a class for mySQL database (in vbscript).
Can we define events in a class when coding using VBScript in ASP? I still have the second question, even if the answer is positive. That is whether the two standard events of a calss module in VB, "Class_Initialize" and "Class_Terminate", is still availabe in VBScript? If not, then how to initialize an instance of a class automatically when it is created?
I'm getting the following error on my locahost at work when I browse in IIS. "Class does not exist. " I created a web site in classic asp but I get this error. When I check IIS for the web logs it gives me 18:52:07 127.0.0.1 GET /PatientPortal/blank.asp 500
I'm running into a problem with VBSCRIPT classes in ASP. I use a seperate file for each class I use. Some of these class files are included in multiple ASP scripts, but are also included in other include files. So if you can't see the problem already, it is that occasionally the class file will be included twice in the same script, relsulting in the following error:
Microsoft VBScript compilation error '800a0411'
Name redefined
/includes/classes/closableobjectlist.asp, line 2
Class ClosableObjectList ------^
Does anyone know a clean solution for this problem?
This is my user-defined class class ABC public CC end class
I make a instance of it and store it at the session set ee=new ABC ee.CC="hi" set Session("myobject")=ee
But when i retrieve it and access the property of my object, it said that The object does not support this property or method, is that ASP cannot do this, or my code has error? set eee=Session("myobject") response.write eee.cc
I am trying to get to the application object from a seperate class in my ASP application and I dont want to pass the object in as the class is inherited to lots of other classes. So i can have something like the following:
Imports System.Web.UI.WebControls.DataGrid
Namespace Classes.Inheritable Public MustInherit Class EntityCollection
Implements IDisposable
Private mobjDataConnection As Classes.Databases.DBConnection
Public Sub New(ByVal strSQL As String) mobjDataConnection = Application("DataConnection") End sub
I've been developing a fantasy football game in ASP. Its going pretty well, I think i've got to grips with a fair bit of the basics now and time to move on to the more advanced stuff.
I was wondering if anyone had any recommendations as to who provides the most useful upload class. I can upload pictures to the database and have the users view them but I am having trouble with trying to retrieve two types of data from the database, one an image (BLOB) and the other, just standard text. I cant seem to get them to display on the same page. The sample code is: Code:
Look for wspwsp.dll in windowssystem32 and add IWAM_"computername" (ie IWAM_MYCOMPUTER if MYCOMPUTER is he name of your computer) account with read and write permissions.
The support person who helped me with this issue told me they will create a knowledge base article for it!
Set x = Server.CreateObject("Scripting.Dictionary") And I get this error: Invalid class string If I omit Server like this: Set x = Server.CreateObject("Scripting.Dictionary") I get this error: ActiveX component can't create object: 'Scripting.Dictionary'
In the same asp page this works fine:
Set conn = Server.CreateObject("ADODB.Connection")
In a Visual Basic application this works fine, too:
Set x = CreateObject("Scripting.Dictionary")
I reinstalled VB without success. Why do I get "Invalid class string" in the first case?
already created a Database Util class using ASP Classic that they would be willing to share which prevents things such as:
-Replaces single tick with double tick so the SQL string is not compromised -Prevents SQL injection -Any other SQL prevention code that I am missing here
I have searched and found bits and pieces but I wanted to add this post to also find out what other items I should be concerned about with SQL that I do not have listed.
I would like to use asp to call a java class file with arguments in methods for a web database application.May I know how to call the following class ? say :
package wkflow; //all the imports here public class clsMail(){ public void sendMail(String subject, String Content, String Recipient){ //Some command to post mail; } }
I'm having a problem with a class that I made. This page works on the rest of my website, but for some reason gives me this error on my index page. I was wondering if anyone knows what would cause this error. Weird since it works on all my other pages. I would paste code for index but it's rather lengthy.
I'm looking for an ASP template class, that's up to par with Smarty. I really need a few functions that Smarty has, like assign, section, custom functions and the ability to use arrays in my templates. I doubt anything like it exists in ASP, but I'm still hoping... anyone know of any template class that comes near Smarty?
Right now I use difference include files for my header, footer, functions, config, etc. Has anyone had any success with this type of template system? Or maybe there is a better template system everyone is using?
Also, if anyone is familiar with "here document" syntax in PHP, how do I get that type of functionality for my ASP code? I tried creating functions for the header and footer such as getheader(pagename, pageid) but was unable to figure out how to write such a large piece of code to be output by a functions.
I was bored this weekend and after reading a couple articles and posts about GetRows() being WAY better than the usual way, I thought I would try and make a class to make it similar to using a recordset.
It's far from finished but I thought I would throw it up here and see what everyone thought. Am I wasting my time? I have no real way of benchmarking the possible improvements but I haven't been able to notice a difference yet. Anyway, you can download it here. The zip includes the class file and an example asp file.
I'm getting ready to implement something like BBCode for my Web Control Panel so that clients can use BBcode instead of HTML to enter data into webpages.
I haven't really laid out anything for this, but I was wondering if any of you all have any type of function or class written allready? Depending on how it's written I will want to probably add to it.
My goal is to be able to add a line of code just above the <textarea> on the input form. That code will generate the HTML and javascript nessesary to display the buttons to implement the BBcode (just like on forums).
Then upon submission it will run the form object through a function to convert all bbcode to HTML. And upon editing the content it would convert the HTML to the proper bbcode for display in the <textarea>
The other goal is to make this completely modular for any form. You just include the correct file and the functions/classes are all there.