Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

ASP | Forum profile

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.

Site: WebDeveloper.com - ASP (site profile, domain info webdeveloper.com)
Title: ASP
Url: http://www.webdeveloper.com/forum/forumdisplay....
Users activity: 22 posts per thread
Forum activity: 14 active threads during last week
 

Posting activity on ASP:

  Week Month 3 Months
Threads: 14 33 82
Post: 30 91 180
 

ASP Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
yamaharuss
6
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)
lloydmav
3
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
verikal
3
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:" &...
yamaharuss's Avatar
2
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)
webmaster54880
1
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...
ssystems
1
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 .
TonyMarz
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...
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...
Danbabe
1
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::

WebDeveloper.com
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 ...
Thread:  Show this thread (6 posts)   Thread info: A Rs.EOF Question Size: 904 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "A Rs.EOF Question :: ASP :: WebDeveloper.com"
WebDeveloper.com
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....
Thread:  Show this thread (4 posts)   Thread info: Classic ASP connect to SQL 2008? Size: 1,239 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Classic ASP connect to SQL 2008? :: ASP :: WebDeveloper.com"
WebDeveloper.com
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
Thread:  Show this thread (3 posts)   Thread info: Pull Name from DropDown Instead of Value Size: 140 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Pull Name from DropDown Instead of Value :: ASP :: WebDeveloper.com"
WebDeveloper.com
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...
Thread:  Show this thread (3 posts)   Thread info: Detect HTTP response code Size: 629 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Detect HTTP response code :: ASP :: WebDeveloper.com"
WebDeveloper.com
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 ...
Thread:  Show this thread (3 posts)   Thread info: Excel Download - "File Not Found"!!! Size: 495 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Excel Download - "File Not Found"!!! :: ASP :: WebDeveloper.com"
WebDeveloper.com
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 ?
Thread:  Show this thread (8 posts)   Thread info: Can Insert But Not Update Paypal IPN Handler Size: 563 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Can Insert But Not Update Paypal IPN Handler :: ASP :: WebDeveloper.com"
WebDeveloper.com
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 ...
Thread:  Show this thread (2 posts)   Thread info: Absolute Position in Browsers Size: 1,054 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Absolute Position in Browsers :: ASP :: WebDeveloper.com"
WebDeveloper.com
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?
Thread:  Show this thread (6 posts)   Thread info: SQL server 2000 very slow Size: 114 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: SQL server 2000 very slow :: ASP :: WebDeveloper.com"
WebDeveloper.com
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 .
Thread:  Show this thread (2 posts)   Thread info: Widget to submit form Size: 900 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Widget to submit form :: ASP :: WebDeveloper.com"
WebDeveloper.com
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?
Thread:  Show this thread (6 posts)   Thread info: Database Connection Going Awray Within ASP Page Size: 246 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Database Connection Going Awray Within ASP Page :: ASP :: WebDeveloper.com"
 

Hot threads for last week on ASP::

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 ?
Thread:  Show this thread (8 posts)   Thread info: Can Insert But Not Update Paypal IPN Handler Size: 563 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Can Insert But Not Update Paypal IPN Handler :: ASP :: WebDeveloper.com"
ASP
A Rs.EOF Question - 6 new posts
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 ...
Thread:  Show this thread (6 posts)   Thread info: A Rs.EOF Question Size: 904 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "A Rs.EOF Question :: ASP :: WebDeveloper.com"
ASP
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....
Thread:  Show this thread (4 posts)   Thread info: Classic ASP connect to SQL 2008? Size: 1,239 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Classic ASP connect to SQL 2008? :: ASP :: WebDeveloper.com"
ASP
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 ...
Thread:  Show this thread (3 posts)   Thread info: Excel Download - "File Not Found"!!! Size: 495 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Excel Download - "File Not Found"!!! :: ASP :: WebDeveloper.com"
ASP
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
Thread:  Show this thread (3 posts)   Thread info: Pull Name from DropDown Instead of Value Size: 140 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Pull Name from DropDown Instead of Value :: ASP :: WebDeveloper.com"
ASP
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 ...
Thread:  Show this thread (2 posts)   Thread info: Absolute Position in Browsers Size: 1,054 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Absolute Position in Browsers :: ASP :: WebDeveloper.com"
ASP
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?
Thread:  Show this thread (6 posts)   Thread info: SQL server 2000 very slow Size: 114 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: SQL server 2000 very slow :: ASP :: WebDeveloper.com"
ASP
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...
Thread:  Show this thread (3 posts)   Thread info: Detect HTTP response code Size: 629 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Detect HTTP response code :: ASP :: WebDeveloper.com"