I'm wondering, what's the general scripting rule for passing parameters between the main script and subs and functions? ByRef, or ByVal? For instance: 'begin...
Register the dll file and make an object of the class in the asp file and then use ... Do you Yahoo!? Yahoo! Small Business $15K Web Design Giveaway - Enter...
Can anyone please help me with the syntax to loop through the records in a recordset and use the FileSystemObject to output each row to a .csv file? e.g. say I...
I am getting this error: Cast from type 'DBNull' to type 'String' is not valid Description: An unhandled exception occurred during the execution of the current...
Buried in my developer site is this little gem: http://authors.aspalliance.com/mbrink1111/InstallmentII/Backup.asp It'll find and convert entire Access...
Sreenath KR, The Question is not clear..If you want aggregated value in Query. It is very simple Select table1.field1,table1.field1,(table1.field1/10) as...
Hi: I've been figuring a good way to do the following problem for a couple of days now.. I have two database tables 1 is called Mfg. and it has a manufacturer ...
Good Morning: I have the following requirement and cannot figure out how to get from here to there. In addition to being the 'webmaster', I'm also the server...
Hello: I am developing site in asp, and truth is first time that I do something in asp, and I have following problem: I have a page with form and i need to...
Hi everyone, I intend to validate dynamic text fields but return error. Can anyone please lend me a hand? I tried mrk.marks.length but error: 'marks.length not...
Did you try form.control.value.length? Looks like you are missing the ".value" part. Mark necta03 <necta03@...> wrote: Hi everyone, I intend to validate...
Hai all I have used the following code for creating a dropdown box. The dropdown box contains the list of names from the database. Inaddition to that I am...
What you want to do with the onchange is make it post the form. Then when you do this repopulate your form. And do a check if it exists in database. ... From:...
You declare that your function takes the parameter mrk, then you define a var with the same name. Bob Filipiak A question not asked is a lost opportunity to...
My Dear Friends, With great help and sugestions from various postings (mine and others), I have learnt ASP at a fast pace and almost completed this site,...
I change to IIS5 recently but I but get error. Error Type: Microsoft OLE DB Provider for ODBC Drivers (0x80004005) [Microsoft][ODBC Microsoft Access...
hi everyone, <% Dim norecords Dim countrec Dim sql2 Dim rs1 sql2="select * from attendance" Set rs1=server.createobject("ADODB.Recordset") rs1.ActiveConnection...
Hi check the connection to the database first if it is fine then try to print the recordcount and print some values instead of the rs1("empid") so that u can...
Are you sure that you have records in your recordset? And it would be better to loop thru the recordset using BOF and EOF instead on a loop. If your first...
I have three groups of users. -Admin which can access to every part of the web site. -Staff which can access to certain part of the web site. Different level...
Hai all! 1) I am using one hidden text box in my form. Wheneever the value changes, I want to call a javascript function. I have used the following code <INPUT...
Not being picky, and I realise that this is pseudo code, but... You'll need a bunch of quotes in there, like this... if Session("level")="admin" then ...