It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Using VB.net
I have a differenct users in my software (Windows based application), i want to give the access according to the user rights..
For Example
Admin Login can able to access and edit all the forms
User Login can able to limited access to edit and view the forms
Employee login can able to view the forms only
...
....
Can any one give some ideas or sample code for this...
Need Vb.Net Help
You use the Authorize attribute to accomplish this in MVC.
Authorize Attribute on MSDN
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to retrieve data from google analytics, by its API Reference
https://www.googleapis.com/analytics/v2.4/data
?ids=ga:12345
&dimensions=ga:source,ga:medium
&metrics=ga:visits,ga:bounces
&sort=-ga:visits
&filters=ga:medium%3D%3Dreferral
&segment=gaid::10 OR dynamic::ga:medium%3D%3Dreferral
&start-date=2008-10-01
&end-date=2008-10-31
&start-index=10
&max-results=100
&prettyprint=true
but i can't find my ?ids=. Can you help me finding it and give an example query string if any please.
Open Google Analytics Front End
Click on Admin (top right)
Click on the Profile that you want to query through the API
Go to Profile Settings Tab
Copy the Profile Id number. it should be something like 123456789
Prepend ga: to it. So it becomes ga:123456789
Query the API with it.
...
Profit!
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
In My App I Wanna retrieve All Stores Near To The Curent Location in Egypt .
i used Google Places API But It Doesn't Give Me What I Need And It Has Only 20 Store .
any One Can Help Me With Web Service free Or Data Bas I Can Access .
Thanks In Advance
If that data does not exist in any form other than Google Places API you may be out of luck. I would recommend this site to search for APIs. http://www.programmableweb.com/apis
If programmableweb.com doesn't help I would recommend seeking out a company that perhaps creates business directories for Egypt. Assuming they are willing to work with you, you may end up needing to build the API all on your own.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to implement a authorization system, that should work on permissions for each individual records.
e.g. User U1 can Read a Record R1
User U2 can Edit/Delete Record R1
i.e. Each Record will have its own set of permitted users for Create/Read/Update/Delete. I dont want tot implement Role based system.
Is there any rails gem/plugin to do that ?
Check out Ryan Bates' CanCan here. It also includes a helpful screencast.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
My idea is to retrieve all users from Google app domain using Java.
I retrieved all the users using Provisioning API but when I tried to store the data in the table using JPA, it's returning a timeout error.
I don't know how to store the entire details at a stretch. Please Help me.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 13 years ago.
I'm researching about Single Sign On (SSO), using google,yahoo and openID account to login in my site.
Some professional can tell me which is method to implement it. API OR LIBRARY to work with it.
Thanks
Nguyen
what language is your site written in? There are several really good OpenID libraries for J2EE and ASP.Net. Check out this other question asked on SO for some .NET implementations.
.NET OpenId Library - both Provider and Consumer