Limiting User Abilities By Group

I'm developing a page in which different users have different rights within the site. I don't even know where to start with this one because searching for anything to do with "website", "user", "rights", "permissions" or anything along those lines gives me nothing but server file permissions.

What I'm trying to do is allow anybody with a username and password to sign in, then based on their security permissions they will be able to use certain functions of the website. I want all this to be modular though...

I don't want a million IF's in my asp code. What I'm looking for is to have a list of groups, each having a checklist of functions they can perform. Assign a user to a group, and they can do those tasks.

View Replies


ADVERTISEMENT

Limiting User Size Upload

I need to develop an asp application wich allow users to upload files, but I need to limit every user folder with 10MB.How can I do that?not pure asp solution? each user must be a IIS/FTP user that will control that?

View Replies View Related

Creating User Group

i need to creat a user group, where as members can log in and discuss issues, like here (asp forum). I need to do it from A to Z,i found this link :http://www.siteexperts.com/tips/com.../ts02/page2.asp, but i didn t find my way yet

View Replies View Related

Check Is Current User Is Member Of A Group

I need to check to see if the Current logged in user on the system
is a member of a group called CustAdmin on CustNT Domain.

If the user is, I need to allow them to have access to the following:
Code:

<br><br>
<input type=Button value = "Click To View Credit Report"
</form>
<hr>

This is a Windows 2000 network.

View Replies View Related

Add Existing Active Directory User To AD Group?

I have a question concerning ASP classic. I'm trying to add an existing user in active directory to an AD group using a web-based form. Using regular code to do this, I get a general access denied error, upon which further research told me I needed admin rights in order to accomplish the task.

I vaguely remember an ASP project I worked on in the past where the script itself authenticated to active directory before requesting information. Is it possible to authenticate to AD (as in, authenticating with my username/password which has access to add users to this specific AD group), then continue with the commands that way? I've resurrected a bit of code from that prior project, and attempted to mix the two together: Code:

View Replies View Related

Limiting Duplicates

I am required to prevent duplicate posts........how can i do this?? my database is MS Access and am using ASP.

Have been scratching my head fo quite some time now........cant figure out the logic.

I understand i cant limit it from the database....if possible i'd like to know how to handle the error that it would give with a page with message

or how can i compare the entry from the database before i post it

View Replies View Related

Limiting Database

I have a database with about two thousand records, and I would like to only display about 50 per page. How would I go about doing this?
I have a hunch it has something to do with the <% Do While not objRS.EOF %> code?

View Replies View Related

Limiting Size

How does one limit the amount of characters being entered into a <textarea>. I know we I can maxlength="50" an <input>, but what about a textarea?

View Replies View Related

Getrows, Paging And Limiting

I'm using getrows to speed up data access time, i wonder though if there is a better way. Each recordset returns up to or more than 500 records, this is still quite an overhead for the server when there are lots of people on the site.

Rather than reading all 500 records into the array and then paging the results is it possible to create the recordset with just 25 entries?

ie if you are on page 1 then only the first 25 records are retrieved from the database, page 2 - records 25 - 49 are retrieved etc

or will this slow things down?

View Replies View Related

Limiting Number Range

when a form is submitted which takes it to a process page, i have 2 seperate fields called hour and min to insert into a database field, basically what i want to do is run a check on the hour field to make sure it doesnt go higher then 23 if it does, return an error, also with the min field to not go above 59

View Replies View Related

Limiting Data Access

I have 40 different users. Each user manages a subset of the total database. Currently I have a pull-down menu to let the user select their subset and then manage the data within it. I'd like to use their login info to pre-select the subset so that they have access only to their assigned areas. How do I "send" the subset name from one asp page to another? the db is "2004" the table is "Students" .

View Replies View Related

Limiting Characters Returned

I am looking for a simple way to limit the amount of letters/Characters returned so that it does not throw off my pages styling. Basically I have the following: Code:

<%
Dim SomeVariable
response.write(SomeVariable)
%>

If that SomeVariable has 300 characters in it it will create a very large table that it displays in so, what I want to do is limit it to say 25 or 50 Characters and simply put like .... after it. Any Ideas?

View Replies View Related

Limiting Users To How Many Session They Can Run

Can anyone please tell me if i can limit the amount session any given user can open at any one time?

View Replies View Related

Limiting Number Of Records

I have built and app where people can add records to a database the problem is while the next page is loading some people are impatient and click refresh adding another same record with slightly different time stamp.

Is there anyway to limit the number of records insterted to my SQL database from my asp pages to one.

View Replies View Related

Limiting Number Of Form Submissions?

I'm using the script below to limit a visitor at my site to only be able to post a form 5 times. I believe the reason I've received more e-mails is because the visitor closes their browser then opens a new one and they can post two times each time they do this.

<%
count = Request("count")
if count = "" Then
count = 0
Else
count = count + 1
End If
%>

<%
If count < 5 Then
%>
<a name="step5"></a><input type="submit" name="Submit" value="Submit">
<%
Else
%>
This form has been submitted 5 times. Please contact me for more information.

Can somebody show me how I can do this so it will only work twice within a 24 hour period even if the visitor closes their browser and opens a new one? I would think cookies be the answer to this but what happens if the visitor has cookies turned off? If this would be a good solution can somebody please help me out? I'm not familiar with cookies.

View Replies View Related

Limiting Number Of Columns Displayed

When displaying data from a database, how can I limit how many columns are displayed on the page?

I am trying to build an image gallery, and I want it to be 5 images across by x number of rows. I know how to make each image it's own column, or it's own row, but I don't know how to limit how many columns are displayed per row.

View Replies View Related

Limiting The Size Of Uploaded File

I am able to upload files to my server using free asp upload
software. But i have another requirement now.

#1) I need to let
the user upload files upto 5MB only. Not more.
I need to limit the size of the file.
This is how i am using the file upload.

#2) I have a txtbox and button on my main form. The name of
the button is Upload and when i click on upload button i get
another asp form which has Code:

View Replies View Related

Limiting Results From An Access Query

I'm attempting to limit a query which is being ordered by a date field to 10 records. The date field contains duplicate values, which are sorted from most recent, back.
However their suggestion of sorting by a secondary field is not providing acceptable results (it returns all the rows in the database). Does anyone have any suggestions of another way around this?

View Replies View Related

Limiting The Amount Of Characters Returned

I am looking to return the first 50 characters from a database field. Does anyone know if there is a SQL function that returns a defined amount of characters from a database field?

View Replies View Related

Group By? Distinct?

When I just - SELECT DISTINCT atblProducts.ID AS ProductID, it selects distinct Product IDs but when I add other columns to the select, it doesn't select the ProductID as DISTINCT.

I've heard to try "GROUP BY..." Code:

View Replies View Related

IIS Group Access

I have a asp app that I wish to limit execution access to a universal
security group during beta test...
I've tried restricting permissions using ntfs, the virtual directory
and the net.config file (which I assume will not work as this is not a
vb.net app).

View Replies View Related

Group Array

I have several arrays, created by splitting a string of comma delimited values, as follows:

arrOne = split("1,2,2,2,3,6,3,7",",")
arrTwo = split("5,2,1,6,5,5",",")

What I want to be able to do is to group the arrays so that I know how much of each there are. I need to output results in the following format:

Number / HowManyTimesThatNumberOccursInTheArray.

So for example, the above would output:

ArrOne:
1 / 1
2 / 3
3 / 2
6 / 1
7 / 1

ArrTwo:
1 / 1
2 / 1
5 / 3
6 / 1

These can literally just be output as a string if needs be. Is this possible? If so, how do I go about achieving it?

View Replies View Related

Group My Catalogue

I have a catalogue table and forum table in my database. In the cata table , it has ASP, PHP, JSP 3 record. In the Forum Table, it has ASP intro, ASP Install, PHP intro, PHP install 4 record. I want to group the ASP intro, ASP install in the ASP group and The same with the PHP group.
How can i do ? ( By ASP ) .
( Could you please give the asp source code to get the data from database by group ? When the Cat_ID at the 2 table is equal, they are in the same group)

View Replies View Related

Administrators Group Name

I try to read out the Administrators Group name from a specific Computer in our Network with the aid of the RID.

View Replies View Related

SQl, Group By - Error

I'm trying to execute this sql below:

strsql="select Name,CName from Task where Name like '%" & request.QueryString("PrintName") & "%' and CName Like '%" & request.QueryString("PrintName") & "%' group by name"

but it doesn't work and i get this error:

You tried to execute a query that does not include the specified expression 'CName' as part of an aggregate function.

View Replies View Related

Group By Average...

I want to Group my records by the average of a field...

I tried using 'GROUP BY AVG(Rating)' but that's an illegal use...

Is there another way, besides opening another recordset? I also used:

... AVG(Rating) as AverageRating GROUP BY AverageRating ...
But, same problem...

View Replies View Related

Group Permissions

I have a asp page that I need to check to see if the current logged on user is a member of a specific active directory group. How can I do this? I have tried so many different LDAP code examples and none seem to work.

Do I need to include a administrator username and password in the code? Does any have any samples of code I can try?

View Replies View Related

Query SQL GROUP BY

I have this problem with table of database MySQL. My table with fields ID, Number and Description: Code:

ID ====== NUMBER ======= DESCRIPTION
1 ====== 9168381650==== CDR VER-CS AP-UPS SANLUCA
2 ====== 9168381659==== CDR VER-CS AP-UPS SANLUCA-9
3 ====== 9168381651==== CDR VER-CS AP-UPS SANLUCA-SQ S.SANLUCA
4 ====== 9168381652==== CDR VER-CS AP-UPS SANLUCA-SQ DIST.GUSPIN
From this table I need to have the total of records data all under the description CDR VER AP-CS-UPS SANLUCA.

Is a hierarchy structure where IDs 2, 3 and 4 belong to the description ID 1. I don't like to see the data individually for each description, but the grouping data for macro-DESCRIPTION. For example:

The total records in table are 4, the query return:
"There are 4 records total for description CDR VER AP-CS-UPS SANLUCA."

View Replies View Related

Group Members

I have a asp page that I need to check to see if the current logged on user is a member of a specific active directory group. How can I do this?

I have tried so many different LDAP code examples and none seem to work. Do I need to include a administrator username and password in the code? Does any have any samples of code I can try?

View Replies View Related

Group By Order By

I have the following statement that is working just fine:

SQL = "select* from products GROUP BY name ORDER BY price"

I have many products with the same name but with different prices and I want to display unique records along with other information but I want to display the cheapest product first. It is displaying the first record in the table with that name but not the cheapest distinct record in the list of all distinct product names. Code:

View Replies View Related

Grouping And Totals For Group

I am writing a report using ASP and am having trouble displaying the data in the way i want. I'm collecting turnovers for various companies and each of the companies has a county code. e.g. Yorkshire is defined as number 2.

I need to group the companies together by county and need to display a totals line for those members only and then on the following lines I want the next county and its companies.

I can group the counties together but the totals line I'm displaying appears after each companies rather than after the group of companies for a given county.

I use a do while loop to check that there is data in the database for each company. I tried putting the totals line outside the loop and that only shows 1 totals line for ALL companies.

View Replies View Related

Counting By Group And Selection

I am trying to show some stats. However I have four levels to choose from, which are shown as true/false. I want to count each entry by employee and categorize it only under the highest level achieved. One entry can have multiply Levels. Hope this make sense my mind is a little foggy today.

Here is the sql statement I am using. I have added the levels as or however I want to count each level but only the highest level achived. I don't know if it would be easier to do this in a SQL statement or in vb script. Code:

View Replies View Related

Invalid Use Of Group Function ??

The query works fine without ordering. But when I try to put ORDER BY that error message appears.

My query is working when it looks like that:

"Select TAB1.WCUST, TAB2.name, sum(TAB1.qty) AS SUMQty, sum(TAB1.wamt) AS SUMWamt from TAB1 LEFT JOIN TAB2 ON TAB1.WCUST=TAB2.name Where TAB1.WMNID=10 GROUP BY TAB1.WCUST, TAB2.name;"

But after I add ORDER:

"Select TAB1.WCUST, TAB2.name, sum(TAB1.qty) AS SUMQty, sum(TAB1.wamt) AS SUMWamt from TAB1 LEFT JOIN TAB2 ON TAB1.WCUST=TAB2.name Where TAB1.WMNID=10 GROUP BY TAB1.WCUST, TAB2.name ORDER BY sum(TAB1.wamt) DESC;" it gives me the error message:Invalid use of group function.

I tried to order the query by WAMT and it was OK.

View Replies View Related







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