I imagine that you don't actually want the users paging through more than 300 screens of information. Give them better selection criteria. Regards, Dave S ......
Hello Guys: For some reason: I am having difficulty in displaying an XML document in a textbox and can't seem to locate a good resource on the web to help....
Hello Guys: Nevermind my stupidity. I just needed to use the .InnerXml method of the XmlDocument. I got something in my head and instead of thinking...
Hi all, this is kind of related to ASP, but not all together... I have an app that uploads files, and their content for displaying. The problem is that in the...
Can any one please help me how to get the web server for windows XP 2002. I make some ASPs which i want to run on XP. I try to find some thing in the control ...
Are you using XP home edition or XP Professional edition? I dont think you can have a web server on XP Home edition. I might be wrong. You can have a web...
I am new to ASP and I have a question in regards to dates. There was a form created for student records. However, I need to include when the record was last...
Hello, I am using WIN XP on NTFS file system. I have to access a .MDB file using ASP. But when i want access it through an asp file, I am getting that the .MDB...
You have an incorrect syntax. You need to find out exactly what is in sqlstmt. For some reason, you seem to have the response.write for sqlstmt disabled. ...
Dear All, I am beginer in asp and want to run .asp pages on linux platform. Please guide me regarding that.I found Apache::asp and chillisoft on net. ...
Hi I am working on a website developed in asp. Now, i need to encorporate some more webpages to that site which'll be developed in asp.net. Here, problem is...
Hello Guys: I was hoping someone might be able to point me to my error. When I try to load my login page: I keep getting the following error: Parser Error ...
Employee Employee_Number Number Employee_Name Text Accounts Account_Number Number Employee_Number Number Commission_Code Number I need the name of employees in...
The sql should be something like: strSQL = "SELECT E.Employee_Name FROM Employee E INNER JOIN Accounts A ON E.Employee_Number = A.Employee_Number" Then to use...
I need a query of each person to count total Trans in the month of March, year 2006. Time_Sheet T.No Account Code E.ID E.Name Year Month Trans 270 Stock...
This should give you what you want:- SELECT [E.ID], SUM([Trans]) FROM [Time_Sheet] WHERE [Year] = 2006 AND [Month] = 3 GROUP BY [E.ID] ORDER BY [E.ID] Dan ... ...
Not sure where to start with this, but I'm SICK of the idiots spamming my guestbook. To date I just check it and try to track IPs or email address to disallow...
I use the vbscript function reference below several times per week. http://www.w3schools.com/vbscript/vbscript_ref_functions.asp And yes, you'll find InStr()...
Thanks! I did check out W3, but looked for ASP and ADO...never noticed the VBS stuff. I'll check it out. Dian ~ ... From: active-server-pages@yahoogroups.com ...
Folks, I am trying to create a form log in feature in my web site. The users authenticate against a database table. I am not sure how to set up my .config...
Jean-Pierre Jamous
CEO@...
May 9, 2006 3:13 am
11535
Thanks again for the pointer to the reference...great stuff, stupid of me not to find it. I set up an array of spammer terms and then use InStr to compare the...
How to i declare two decimal places variable. I use that int ep ep=rs("Tot_Cnt")/rs("Tot_Hrs") But it shows that value 1.37671232876712 Please help as i need...
Hello, I'm having problems with the followiing checkbox. What I'm doing is having the user click on the checkbox and have the information added to the database...
A form will transfer all the data contained in it to the next page on submit. On the page that receives the form data you'll need to check whether the checkbox...
I want to separete John and 1221. How to i separete name and their IDs. Needs help Empl_ID ... John-1221 John-1222 Micheal-2101 Micheal-2102 Thanks, ... Yahoo!...
Kathy Iwasik
girl_moon_godess@...
May 12, 2006 1:51 pm
11541
Use InStr function, or you can split the variable using the Split function. ________________________________ From: active-server-pages@yahoogroups.com ...
Query shows wrong data Actual Data in Microsoft Access Emp_ID Name1 Award_Date Award_No Award1 19 Armando Suarez 5/1/2006 1 Best Employee 19 Armando Suarez...
Select * from Inventory where item_code=10 I need a button on my page when user press it all the data which shows on the screen goes into Excell sheet. Data...