Req/l Forum Script That Allows Me To Set User Groups To View Certain Categories?

im looking for an asp (not .net) script based on a user forum
where as the admin i can set up different users to only see related
forum topics (i want to use it for project management) uploading files
to the forum would also be a massive advantage!!!

View Replies


ADVERTISEMENT

How To Count The View, Donwload, User Quantity?

i saw from the web, how can the coding write out to count:

1. how many people View this image?how many people View this Topic?

2. how many people download that image, software or etc?

3. how to write out the code?

View Replies View Related

Error :: Opened Exclusively By Another User, Or You Need Permission To View Its Data

I keep getting an error that says:

Error Type:
Microsoft JET Database Engine (0x80004005)
The Microsoft Jet database engine cannot open the file 'c:inetpubwwwrootannoneil\_databaseannoneil_AN D.mdb'. It is already opened exclusively by another user, or you need permission to view its data.
/annoneil/artist.asp, line 96

The code was working fine a few days ago but now I cannot figure this out.

View Replies View Related

Groups With SQL

Is there a way with SQL to query certain groups from the same table?That would help me later to display the results in few columns(HTML table).

Example:

1st column- product ID (unique)
2nd column - product name
3rd column - group (here we have values that repeat themselves like:cans, meat, beverages, etc.)

All I want is to query by groups with SQL so the recordset would consist of: cans, meat and beverages (columns). Than I would list the products in every separate column. I don't know if this could be done? I know how to query one group of them only, but I need that for every group I have.

example;
sql = "SELECT * FROM table WHERE group='cans', "

View Replies View Related

Authentication Using NT Groups:

I am trying to authenticate users by what NT groups they are in, is there any easy ways ofdoing this in ASP classic not .NET .

View Replies View Related

Random Images Divide Into Three Groups?

I have a bit of a problem.

Basically I have a homepage, when the page loads up it will display images.

However, the images are dived into three groups, as seen below.

Group1 - Image1, Image2, Image3

Group2 - Image4, Image5, Image6

Group3 - Image7, Image8, Image9

What I want is that every time when someone enters the front page, it should pick a group and display that particular set of images on the homepage.

View Replies View Related

ADSI And Local Windows Users And Groups!

I am looking at the ability for a user on my website to add/remove/edit windows user accounts, thus controlling access to my website. I have integrated windows authentication checked on the website and unchecked anon access in IIS, so I am always asked for a username and password.

I have seen some ADSI scripts that I can use in my ASP pages to manipulate local user accounts. However, when I try and use these they dont work as I need to have admin rights. Of course I don't wish to add the user to the admin group for security reasons....
Anyone have a code snippet to do this?

View Replies View Related

Multiple Categories

i want to have a search program that has multiple categories.
anybody can give a sample?

View Replies View Related

Delete Categories

I am using MS Access & open 3 table, 1 for Product 1 for Genre, 1 more for Product_Genre (because one product maybe have many categories)

But when I have tried many ways to delete one of categories, also fail to do it.

What I want to do is : When delete a category,

1) it must delete the Product which is under the Category (to be delete)
2) at the same time it must also delete the records from table 'Product_Genre' which is related with the Category (to be deleted)Code:

View Replies View Related

Looping Through Categories In Recordsets

I have a list in a database that I have categorised using a category field. I now want to retrieve all records but grouped by categories. how do i get my asp to loop through each category creating a recordset for each one rather than hard code a new recordset for each category i would rather it did it dynamically if thats possible ??? Code:

View Replies View Related

Recursive Categories List

i am working on ecommerce site and would like to display the categories (and sub categories) from the db recursively,
i did it but i also want to add the level of each category like :
main_cat_1 (level 1)
--------sub_1 (level 1_1)
--------sub_2 (level 1_2)
------------sub_sub_2 (level 1_2_1)
------------sub_sub_2 (level 1_2_2)
------------sub_sub_2 (level 1_2_3)
--------sub_3 (level 1_3)
main_cat_2 (level 2)
main_cat_3 (level 3)
--------sub_3 (level 3_1)

and so on ... how can i do that ?

View Replies View Related

Getrows For Categories Then Products

im developing a Product configurator (just like alienware use) where in my database i have
(systems table) a list of PC systems

systemID
(categories table) a list of PC product categories (ie. CPU, RAM...)
categoryID
(products table) a list of all products
productID, catID
(link table)
sysID and prodID

Now before i put the code ive done so far, let me explain that the first page lists all systems wich then gives the systemID for the link table. Once this page loads it needs to go through each category then list the products available to that category where sysID = systemID. Now a query i put together to list all products for that sysID is:

select * from PRODUCTS inner join link on link.prodID = PRODUCTS.productID where link.sysID=systemID

Now this query works great and lists all of the products for that systemID, but what im unable to do is (using GetRows()) have the category name listed as a title then have each product under the respected category. Code:

View Replies View Related

Create Drop-down With Categories From ID's???

I've got a products table and a productCategories table related by a categoryID field. The categories table uses autonumber for the categoryID and I've got about 4 or 5 different categories in there right now.

I'm creating an Add Product page now and I'd like to create a drop down menu with which to select the correct category. How do I make it so that my drop down menu actually shows the category names and then populates my tables accordingly?

I won't need to ever add a new category here, simply use the current categories in a drop down so I don't have to guess/remember which number is which category.

View Replies View Related

Physical Pages Categories

I want to put my existing review books webpage in Asp/Database because I have more than 5000 of them and its now too complicated to keep tracks of it all in HTML only. My database is ready, I know how to connect to it, how to list records and how to select in them, I know how to pass a variable from a page to another, I know how to add, modify and delete records... yeah its about that so far.

Here is how I want my website to look like. I want to have physical pages categories, like all the science fiction books should be listed in sf pages separated alphabetically Ex reviews of Lord of the ring will be in sciencefictionT.asp and so on for each categories. I want too that a page with all the reviews listed linking to the right place. In my database I have already categories for each books.So is it possible to do or I complicate my life too much?

I know that it would be much more easier just to make a review.asp and have the review one at the time there, but I like the way my website is already is, that make it different from others.

View Replies View Related

Categories In Product Catalog

I have a default catalogue/product page (code shown below list_item.asp) which list all the products from the database. But since I have lots of category in the catalog/product page, i want to separate them according to their respective categories like writing instruments, desktops, pantry etc.

This will enable the user to go to a respective page and choose the individual product from the respective categories. If I adjust the SQL statement to be "SELECT * from Product " WHERE category LIKE 'DESKTOPS', this page will lists all the items from that category selection. But if i were to make another page such as pen.asp and adjust the SQL statement to category LIKE 'PEN'.

The first page lists the products from the pen category and the following page unfortunately shows category from Desktops. how to segragate these categories so that it will only show the products from the individual categories.

View Replies View Related

Drop Down Navigation Menu With Categories

I have created a dropdown menu that allows users to navigate and load other pages into a different frame (detail) than the one in which the dropdown is sited. All menu items and urls are stored in an access db.

Now I would like to try and make 2 improvements but I don't know how:

1. I would like to use the [Category] field in my data set to produce (non-clickable) headings in the drop down list. Code:

View Replies View Related

Site Map: Display Categories On Next Page

I'm trying to create a site map that will display links to all pages including links to bring the visitor to different categories. See below:

Home:

About us:

Products:
-Category 1:
-Category 2:
-Category 3:
-Category 4:

Contact us:

When the visitor clicks on 'Category 3' they should be sent to a page that displays all the products in Category 3. Code:

View Replies View Related

Forum In ASP

I know that the great majority of the Forums is developed in PHP. Question: Does anybody know some Forum developed in ASP?

View Replies View Related

ASP.NET Forum

Would someone please direct me to the appropriate forum to ask general
ASP.NET/Web development programming questions?

View Replies View Related

A Forum

I dont want code, I just want a few links and ideas
I want to create a forum. I have noticed alot of the posts here are very long
Yet access only allows for 256 characters max.
Can you use ASP to create a forum?
If so, what type of database is used to store the information?

View Replies View Related

Forum...?

how to make forum on my webpage using ASP...

View Replies View Related

Asp Forum

i want to add a forum to my website, i don't have time to built one and i found a free php forum that call PHP-NUKE, i'm sure that some of you heard about it. unfurtunatly i can't use this system cause my windows server does not support it. does anyone know of a similar system in asp that i can use?

View Replies View Related

Forum

I am in the process of writing my own forum. It is gone fairly well so far. I been searching different forum scripts, both asp and php, and I can't find this answer.

How is it scripted to only show a forum post that hasn't been read by the current user?
I feel it has something to do with the last visit, and or the date of the
post.

But I am not sure how this is done. On my phpbb forum, I can go in and read something, go back to index, refresh, and that post is now marked as read. how is this done?

View Replies View Related

Forum Solution

my client wants a forum integrated in his website. Ive found some existing forum solutions (snitz, carbon communities etc...). These are great, but my client wants the forum working whereby when a user posts, the post is sent to the clients who then confirms or denies the post. The forum is for a school, hence the very tight regulation of posts.

Does anybody know of an existing forum which allows this functionality (preferably a free forum).

View Replies View Related

ASP Forum Management

if anyone has a bead on an installable forum besides SNITZ. Im not totally concerned aboutit being free or not

View Replies View Related

Asp Forum Program

if its using access for db its even better.recommend a free one.

View Replies View Related

Modification Of Asp Forum

I am looking for a ASP Forum which can be easily modified. This Forum also has to have very little "hard-coded" templates and styles, as I am making a ASP Forum for a Browser that supports HTML v3.1 and very little of all that fancy graphical styles out there.
So the forums should be quite basic and in plain HTML. So in a way I am only looking for the "ASP Forum Engine".

View Replies View Related

ASP Forum Tutorial

Can anyone direct me to good tutorial site on how to build an online Forum with ASP.

View Replies View Related

Where Is The ASP And JavaScript Forum?

Why does everyone assume that ASP is in VBS???

View Replies View Related

ASP-Based Forum

I have been mostly frequenting the PHP forums but now my job makes it necessary to get my hands dirty with ASP.
I am trying to find a Forum Software (Open Source or Commercial, doesn't matter) that has all the bells and the whistles. The following are some of the major requirements:Integration with existing Site and DB (including migration of data from current forum)
Ability to apply the look and feel of the site (if various parts of the Forum can be broken down to components/panes/boxes/windows that can be included in other site pages as well as customisable through CSS)
If anyone knows of any software that meets these requirements, please do let me know. Additionally, if you have experience in using that software, your opinions on it will be much appreciated. Currently I am going through some forum's that I managed to find through searching in SitePoint (ASPPlayground, Snitz, Web Wiz Guide, IdealBB). If are experienced with these

View Replies View Related

Discussion Forum

I am running an Access database driven website using ASP in IIS 6.
Lately I noticed people can enter their messages into the Access thread table without login. And the web page couldn't display this particular post. The user name field suppose filled automatically once the user logged in. But the field is empty while the content of post is already in the table.
I can see people has been trying funny things to my discussion forum. The forum works perfectly fine if people don't try anything funny. I've post and reply message in the forum, I've never had any problems.
How can I fully test my website? People call it script testing and Quality Assurance?

View Replies View Related

Free Forum ASP

Is there any free ASP script for a forum?

View Replies View Related

ASP Forum Question

I wonder how to detect the URL of a post in the forum. detect "http://" ? but some URLs do not appear as this type.

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved