|
More site info...
ASPMessageboard.com - www.aspmessageboard.com | Site profile
|
|
Site profile page for http://www.aspmessageboard.com.
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.aspmessageboard.com.
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.aspmessageboard.com is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) 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 site's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity table on ASPMessageboard.com:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
57
|
216
|
805
|
|
Post:
|
137
|
463
|
2,183
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for ASPMessageboard.com (http://www.aspmessageboard.com)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
ASPMessageboard.com posting activity graph:
|
|
http://www.aspmessageboard.com Alexa graph:
|
Top authors on ASPMessageboard.com during last week:
user's latest post:
Can I encode a Query String?
Published (2009-12-01 08:06:00)
How about changing the form submit to do a POST, rather than a GET. That would avoid putting the fields into the query string. You could add client-side javascript to encode the values as you're describing, but anyone could look at the secret encoder code.
user's latest post:
Making Dropdownlist ReadOnly
Published (2009-12-02 11:03:00)
from the database. That way, you will be positive that only the values that exist, will be shown in the ddl. And no one can change anything. You should always fill a ddl from a database when you can. This will ensure data integrity. Andrew SQLDBA
user's latest post:
how to duplicate Database...
Published (2009-11-25 22:30:00)
PHP and ASP.Net are two totally different animals. Use Visual Studio Express. Be sure to use code-behind files for your code. Drag and drop some controls onto a web form, and double click on them, then look at what you get in your code behind.
user's latest post:
Unable to serialize the session...
Published (2009-11-26 11:46:00)
Yes, the btnPrint_Click is a postback function, in that function i would try to access that div.... but it doesn't exist in that context...
late_nights_and_sore_eyes
5
user's latest post:
Assistance with SQL Query Please...
Published (2009-12-01 23:23:00)
Quote: Originally Posted by AndrewSQLDBA If you want to email me a copy of your database, you can. I will play around with it and see what all I can come up with. If the backup file is not too large that is. Thanks Andrew - whats your mail address mate?
Ryan6491 Ryan6491 is offline...
4
user's latest post:
Unable to serialize the session...
Published (2009-11-26 11:58:00)
Still seems like a runat="server" problem. So long as the wrapper div has that attribute, ASP.NET should be able to see it.
amissra amissra is offline...
4
user's latest post:
Unable to serialize the session...
Published (2009-11-26 11:46:00)
Yes, the btnPrint_Click is a postback function, in that function i would try to access that div.... but it doesn't exist in that context...
user's latest post:
SQL for recordset
Published (2009-11-26 17:47:00)
Thought I had it but now the recordset just has empty rows and I need it to only have entries where the colour is selected. Any help please.
|
|
|
Top 10 active forums on ASPMessageboard.com during last week:
|
|
Top 10 forums on ASPMessageboard.com:
|
|
|
|
Latest active threads on ASPMessageboard.com:
Started 4 days, 3 hours ago (2009-12-02 11:03:00)
by AndrewSQLDBA
from the database. That way, you will be positive that only the values that exist, will be shown in the ddl. And no one can change anything. You should always fill a ddl from a database when you can. This will ensure data integrity.
Andrew SQLDBA
Started 6 days, 4 hours ago (2009-11-30 10:49:00)
by AndrewSQLDBA
database queries. With a Sproc, you can easily pass in one parameter and be able tto select the entire query that you need. A Sproc can have multiple queries within one sproc. And you can also use an IF statement there. So, IF @InputParam = 1, Then perform this query, ELSE, perform this other query.
You can read the SQL Books Online for all kinds of samples and correct syntax for SQL Server ...
Started 4 days, 20 hours ago (2009-12-01 18:38:00)
by bill wilkinson
selectSingleNode() or getElementsByTagName()
http://msdn.microsoft.com/en-us/libr...46(VS.85).a spx
http://msdn.microsoft.com/en-us/libr...49(VS.85).a spx
So:
Code:
Sub showFeed(url) ' functions should return values...subs never do
Set xmlObj = Server.CreateObject("MSXML2.FreeThreadedDOMDocumen t")
xmlObj. async = False
xmlObj.setProperty "ServerHTTPRequest", True
...
Started 5 days, 6 hours ago (2009-12-01 08:06:00)
by Ryan6491
How about changing the form submit to do a POST, rather than a GET. That would avoid putting the fields into the query string.
You could add client-side javascript to encode the values as you're describing, but anyone could look at the secret encoder code.
Started 4 days, 21 hours ago (2009-12-01 17:57:00)
by bill wilkinson
Code:
ccnum = "7123112722119981" ' or wherever you get the credit card number from
showcc = String( Len(ccnum)-4, "X" ) & Right(ccnum,4)
Started 2 weeks, 2 days ago (2009-11-20 10:05:00)
by TheFinalizer
http://www.asp.net/learn/data-access/
Started 1 week, 2 days ago (2009-11-26 22:19:00)
by TheFinalizer
Well, what does your current configuration look like?
|
|
Hot threads for last week on ASPMessageboard.com:
Started 5 days, 6 hours ago (2009-12-01 08:06:00)
by Ryan6491
How about changing the form submit to do a POST, rather than a GET. That would avoid putting the fields into the query string.
You could add client-side javascript to encode the values as you're describing, but anyone could look at the secret encoder code.
Started 6 days, 4 hours ago (2009-11-30 10:49:00)
by AndrewSQLDBA
database queries. With a Sproc, you can easily pass in one parameter and be able tto select the entire query that you need. A Sproc can have multiple queries within one sproc. And you can also use an IF statement there. So, IF @InputParam = 1, Then perform this query, ELSE, perform this other query.
You can read the SQL Books Online for all kinds of samples and correct syntax for SQL Server ...
Started 1 week, 2 days ago (2009-11-27 12:11:00)
by alan1313
It worked better as AptNumber <> '' instead of IS NOT NULL
"SELECT CustKey, CustomerID, FirstName, LastName, Username, CustomerEmail, Address, City, State, Zip, AptNumber, ShipAddress, ShipCity, ShipProvince FROM dbo.Customers WHERE (AptNumber <> '' AND ShipProvince IS NULL) AND Address LIKE ShipAddress ORDER BY CustKey"
Any other hints would be appreciated. Thanks
Started 4 days, 20 hours ago (2009-12-01 18:38:00)
by bill wilkinson
selectSingleNode() or getElementsByTagName()
http://msdn.microsoft.com/en-us/libr...46(VS.85).a spx
http://msdn.microsoft.com/en-us/libr...49(VS.85).a spx
So:
Code:
Sub showFeed(url) ' functions should return values...subs never do
Set xmlObj = Server.CreateObject("MSXML2.FreeThreadedDOMDocumen t")
xmlObj. async = False
xmlObj.setProperty "ServerHTTPRequest", True
...
Started 1 week, 1 day ago (2009-11-27 18:16:00)
by AndrewSQLDBA
which is a very poor way to do this. You need to write a query that selects only what you want.
SELECT
ID, Name
FROM
Users
ORDER BY
UserID ASC
That will begin to get you the records that you want. Actually run the query in Access until it is returning the records that you want. That way you have to write the query only once on the front-end.
Just my three cents, but ID ...
Started 1 week, 1 day ago (2009-11-27 15:05:00)
by MauricioDIM MauricioDIM is offline Senior Member
A post Not About mE... strange very strange.. Libration Force...
http://upload.wikimedia.org/wikipedi...960_-_Cuba. jpg
Started 1 week, 1 day ago (2009-11-28 04:02:00)
by Soporose Junior Member
Hi all.
Need some information about the workings of cookies using classic asp.
Say I create a cookie containing two keys.
1. A check value: test="OK"
2. A Referrer ID: RID=nnnnnnn
I also set .expires=Date+365
During future visits to that page there is a check for the cookie. If it exists the check value is always rewritten (overwritten).
But the Referrer ID is only...
Started 1 week, 3 days ago (2009-11-26 10:53:00)
by iahamed iahamed is offline Junior Member
Hello there,
I had to develop a Programe using "ASP and MySQL and ODBC with No DSN" way with my previous Host and the codes all "worked fine" when Inserting the records to the Db.
In a Different Host they use DSN way, Here too I manage to view the data from the DB & Create the MySQL Table too using pure asp code with a DSN Connection.
My Problem comes when adding the data to the ...
Started 1 week, 2 days ago (2009-11-26 16:51:00)
by natf
new SQL:
SQL = "SELECT IIF(SC.stockCode IS NOT NULL, C.colour,'') AS colour" _
& " FROM Colours AS C LEFT JOIN stockColours AS SC " _
& " ON ( C.colourId = SC.colourId AND SC.stockCode = " & request("stockCode") & ") " _
& " ORDER BY C.colour "
Works fine but if any improvements please post.
Thanks
Started 1 week, 2 days ago (2009-11-26 22:19:00)
by TheFinalizer
Well, what does your current configuration look like?
|
|