|
More site info...
|
|
Forum profile page for ASP on http://www.webdeveloper.com.
This report page is the aggregated overview from a single forum: ASP, located on the Message Board at http://www.webdeveloper.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "ASP" on the Message Board at http://www.webdeveloper.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on ASP:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
14
|
33
|
82
|
|
Post:
|
30
|
91
|
180
|
|
|
ASP Posting activity graph:
|
Top authors during last week:
user's latest post:
Classic ASP connect to SQL 2008?
Published (2009-12-11 08:57:00)
This is all you need: Code: Set Conn=Server.CreateObject("ADODB.Connection") "PROVIDER=SQLOLEDB;DATA SOURCE=myIPAddress;DATABASE=myDatabase;USER ID=myUserID;PASSWORD=myPassword;" Then when you query, use this: Code: sql = "SELECT * FROM WhateverTable" Set rs=Conn.Execute(sql)
user's latest post:
Can Insert But Not Update Paypal...
Published (2009-12-08 08:03:00)
Hi, I cannot see the error message in a browser because it not being executed on a web page. Its being executed on the webserver when paypal send an IPN message.... I asked my web host if I could see the server logs but they won't help
user's latest post:
Can Insert But Not Update Paypal...
Published (2009-12-08 10:18:00)
Add this at the top of your page Code: On Error Resume Next Add this function to your page. Code: Function LogError(eSource, eNum, eDesc, ePos) Dim FSO Dim TS Dim eFileName 'Must have write permissions... eFileName = Server.MapPath("logfile.txt") Set FSO = Server.CreateObject("Scripting.FileSystemObject") Set TS = FSO.OpenTextFile(eFileName, 8, true) TS.Writeline "Date:" &...
user's latest post:
Classic ASP connect to SQL 2008?
Published (2009-12-11 08:57:00)
This is all you need: Code: Set Conn=Server.CreateObject("ADODB.Connection") "PROVIDER=SQLOLEDB;DATA SOURCE=myIPAddress;DATABASE=myDatabase;USER ID=myUserID;PASSWORD=myPassword;" Then when you query, use this: Code: sql = "SELECT * FROM WhateverTable" Set rs=Conn.Execute(sql)
user's latest post:
Widget to submit form
Published (2009-12-05 21:53:00)
Hello, I have a cleint that has asked me to write a widget that can submit form data to an asp website. Basically he would like to duplicate the asp form on his website and then send the data to an external site to process it. The user of the form would end up on the other site anyway, but he just wants it to be more conveinent for his customers to fill out the duplicate form on his site and instead of searching for the link for the other...
user's latest post:
Widget to submit form
Published (2009-12-05 22:37:00)
Quote: Originally Posted by webmaster54880 The other site has no API's and I am pretty sure that the processing script is in a secure location. If you can do this in curl you just do the same in ASP. Click Here .
user's latest post:
Absolute Position in Browsers
Published (2009-12-07 15:45:00)
I have developed a site using VIsual Studio 2008. Bcause the site was small but loaded with graphics I used a simple ASP menu (Navigation tool / Menu) to support customers traversing from page to page. In IE everything works fine, note that I used absolute positioning. A family member used a mac book to look at the site using the Safari browser. O.K. now the problem. In Safari the nav menu displays at the top left corner of the page. To...
TonyMarz TonyMarz is offline...
1
user's latest post:
Absolute Position in Browsers
Published (2009-12-07 15:45:00)
I have developed a site using VIsual Studio 2008. Bcause the site was small but loaded with graphics I used a simple ASP menu (Navigation tool / Menu) to support customers traversing from page to page. In IE everything works fine, note that I used absolute positioning. A family member used a mac book to look at the site using the Safari browser. O.K. now the problem. In Safari the nav menu displays at the top left corner of the page. To...
user's latest post:
Classic ASP connect to SQL 2008?
Published (2009-12-09 09:46:00)
I thought it was about time I upgraded by database skills. I currently have classic ASP web sites connecting to Access databases. This is the connection script I use in an Include File to connect to MS Access locally on the web server: <!--#include file="includes/ADOVBS.inc" --> <% Dim RS, Connect Set Connect = Server.CreateObject("ADODB.Connection") Connect.Provider =...
verikal verikal is offline...
1
user's latest post:
Can Insert But Not Update Paypal...
Published (2009-12-08 10:18:00)
Add this at the top of your page Code: On Error Resume Next Add this function to your page. Code: Function LogError(eSource, eNum, eDesc, ePos) Dim FSO Dim TS Dim eFileName 'Must have write permissions... eFileName = Server.MapPath("logfile.txt") Set FSO = Server.CreateObject("Scripting.FileSystemObject") Set TS = FSO.OpenTextFile(eFileName, 8, true) TS.Writeline "Date:" &...
|
|
|
|
Latest active threads on ASP::
Started 4 days, 16 hours ago (2009-12-11 05:01:00)
by Evren Betimen Registered User
Code:
CusNameFld = request("CustomerNameField")
SQL = "SELECT Customers FROM Sales WHERE CustomerName = "&CusNameFld&" "
set RS = Server.CreateObject("ADODB.RecordSet")
RS.open SQL , conn , 1 , 3
if not rs.eof then
...Some Code...
end if
...Some HTML code...
if rs.eof then
... (Needed code) ... (I want to show all customers)
I want to return CusNameFld variable ...
Started 6 days, 11 hours ago (2009-12-09 09:46:00)
by Danbabe Danbabe is offline Registered User
I thought it was about time I upgraded by database skills. I currently have classic ASP web sites connecting to Access databases. This is the connection script I use in an Include File to connect to MS Access locally on the web server:
<!--#include file="includes/ADOVBS.inc" -->
<%
Dim RS, Connect
Set Connect = Server.CreateObject("ADODB.Connection")
Connect.Provider = "Microsoft....
Started 4 days, 12 hours ago (2009-12-11 08:53:00)
by yamaharuss
Your form field name is already declared in the <select> tag. the "name" values you have in the list options are of no value
Started 5 days, 9 hours ago (2009-12-10 11:24:00)
by -asx-
Wondering if anyone reading the site today might have an answer to this question.
Is there any way to capture the HTTP response code that was fired when a page was served? We have a custom 404 page that comes up when users get a 401, 403, or 404 error. As you know, there are many sub-error types within each of these general errors. For example, 403.14 - Directory Listing Denied.
I would...
Started 5 days, 17 hours ago (2009-12-10 03:56:00)
by jacknbey jacknbey is offline Registered User
Got a funny problem with ASP script where I was trying to click on the link to download an Excel file from a search result page. I managed to download once everytime and when I click on the same link again, it will throw an error as "File Not File". Not a big issue, I just have to search for the same result again (or press F5 to refresh the page) and I can click on the same link to download into ...
Started 1 week, 2 days ago (2009-12-06 12:28:00)
by verikal
Code:
conn.CommandText = "UPDATE dbo.tblSubscriptions SET last_name = ? WHERE email = ?"
Is the email field set as INDEX ?
Do you have more then one same email address in thet field ?
can you post the error you get ?
Started 1 week, 1 day ago (2009-12-07 15:45:00)
by TonyMarz TonyMarz is offline Registered User
I have developed a site using VIsual Studio 2008. Bcause the site was small but loaded with graphics I used a simple ASP menu (Navigation tool / Menu) to support customers traversing from page to page. In IE everything works fine, note that I used absolute positioning. A family member used a mac book to look at the site using the Safari browser. O.K. now the problem. In Safari the nav menu ...
Started 3 months, 1 week ago (2009-09-05 17:24:00)
by yamaharuss
could be a number of things.. your server speed, network speed, could also be your queries.. using a lot of loops?
Started 1 week, 2 days ago (2009-12-05 22:37:00)
by ssystems
Quote:
Originally Posted by webmaster54880
The other site has no API's and I am pretty sure that the processing script is in a secure location.
If you can do this in curl you just do the same in ASP. Click Here .
Started 3 months ago (2009-09-13 21:57:00)
by Kuriyama
Are you using a DSN connection or trying to connect directly to the DB? It looks like you are trying to use a DSN called W2KSQL. Are you sure that the username and password is set correctly for that? Is your DB on a different server than IIS?
|
|
Hot threads for last week on ASP::
Started 1 week, 2 days ago (2009-12-06 12:28:00)
by verikal
Code:
conn.CommandText = "UPDATE dbo.tblSubscriptions SET last_name = ? WHERE email = ?"
Is the email field set as INDEX ?
Do you have more then one same email address in thet field ?
can you post the error you get ?
Started 4 days, 16 hours ago (2009-12-11 05:01:00)
by Evren Betimen Registered User
Code:
CusNameFld = request("CustomerNameField")
SQL = "SELECT Customers FROM Sales WHERE CustomerName = "&CusNameFld&" "
set RS = Server.CreateObject("ADODB.RecordSet")
RS.open SQL , conn , 1 , 3
if not rs.eof then
...Some Code...
end if
...Some HTML code...
if rs.eof then
... (Needed code) ... (I want to show all customers)
I want to return CusNameFld variable ...
Started 6 days, 11 hours ago (2009-12-09 09:46:00)
by Danbabe Danbabe is offline Registered User
I thought it was about time I upgraded by database skills. I currently have classic ASP web sites connecting to Access databases. This is the connection script I use in an Include File to connect to MS Access locally on the web server:
<!--#include file="includes/ADOVBS.inc" -->
<%
Dim RS, Connect
Set Connect = Server.CreateObject("ADODB.Connection")
Connect.Provider = "Microsoft....
Started 5 days, 17 hours ago (2009-12-10 03:56:00)
by jacknbey jacknbey is offline Registered User
Got a funny problem with ASP script where I was trying to click on the link to download an Excel file from a search result page. I managed to download once everytime and when I click on the same link again, it will throw an error as "File Not File". Not a big issue, I just have to search for the same result again (or press F5 to refresh the page) and I can click on the same link to download into ...
Started 4 days, 12 hours ago (2009-12-11 08:53:00)
by yamaharuss
Your form field name is already declared in the <select> tag. the "name" values you have in the list options are of no value
Started 1 week, 1 day ago (2009-12-07 15:45:00)
by TonyMarz TonyMarz is offline Registered User
I have developed a site using VIsual Studio 2008. Bcause the site was small but loaded with graphics I used a simple ASP menu (Navigation tool / Menu) to support customers traversing from page to page. In IE everything works fine, note that I used absolute positioning. A family member used a mac book to look at the site using the Safari browser. O.K. now the problem. In Safari the nav menu ...
Started 3 months, 1 week ago (2009-09-05 17:24:00)
by yamaharuss
could be a number of things.. your server speed, network speed, could also be your queries.. using a lot of loops?
Started 5 days, 9 hours ago (2009-12-10 11:24:00)
by -asx-
Wondering if anyone reading the site today might have an answer to this question.
Is there any way to capture the HTTP response code that was fired when a page was served? We have a custom 404 page that comes up when users get a 401, 403, or 404 error. As you know, there are many sub-error types within each of these general errors. For example, 403.14 - Directory Listing Denied.
I would...
|
|