I have a general idea, and there are some obvious cases, but there are also some gray areas for me - when is it best to use to extend from a component and when is it best to create a user control ? This pertains to a specific work problem I am trying to solve, but the specifics of that are not important - a general answer to this questi...
Hi guys,
I wonder when do you consider to create a user control in .NET? Do you have some basic criteria to exclude your code from the page and introduce a new user control?
Usually I tend to follow those to decide whether I need a user control or not:
When the page seems to be more readable with a separate user control
When some par...
Hi u all,
I have a server in wich is installed Postgresql. In this server i want to install theMicrosoft Active Directory. Can i do this without a problems? Can i change the user that run the Postgresql service without a problem?
When i installa the AD all the machine users will be deleted so i need to create domain users to run that s...
I run a film festival website which accepts ratings on films and I'm concerned with stopping people cheating the system (i.e. submitting multiple ratings to fix the top ten list).
I've used techniques like IP address and browser stamp checking but I'm aware some people are trying to cheat the system by changing ISP connection or browse...
Hi There,
Just wondering if anybody knows if its possible to set up admin user accounts. So that every potential user of the admin panel has their own login details.
Is this possible?
Regards,
Fiona
...
hi!
I want to verify that given username/password pair is a valid windows vista account using c#.
...
Hello,
I'm learning Django and I have a problem. I want to have django user profile where the user can add some objects (he can add more than one) e.g. his addresses, his products and theirs description and so on. I've no idea how to do that. Thanks for any help.
Best regards,
LH
...
Hey guys, here's what I'm attempting:
PHP sessions work by default with my configuration, if I just go session_start() and try the standard session increment test it works.
if (!isset($_SESSION['count'])) {
$_SESSION['count'] = 0;
} else {
$_SESSION['count']++;
}
However I want to use a MySQL table for session storage. I've ...
I want to be able to retrieve Windows "special paths" (e.g. temporary files folder, desktop) for user accounts, but from a service.
I know the normal way to do this is by using SHGetFolderPath with the appropriate CSIDL for the folder type. Is there any way to get this type of info for each user without the service having to log in as ...
Hi,
I am pretty new to CakePHP, having been using rails for a little while. My question is, can anyone recommend a good user management, authentication and acl plugin or component for Cake?
I have come across this one, but it has not been updated since 2008. If not can anyone recommend a good book/tutorial site for this kind of set up?...
How does fast user switching affect a windows service? Are the services suspended? or do they keep running in the background when a different user logs in?
...
Is there a way to see users that have certain security role assigned?
I'm looking for a hint that I missed something or a tool.
...
After calling method
_membershipProvider.DeleteUser(user.UserName, false);
where where the second parameter (false) is deleteAllRelatedData, orphaned entries are left in the database (aspnet_Users table and probably more). What is the best practice for cleaning these up?
EDIT: The user management code is already changed to now use tr...
Is it possible to find out where the users come from? For example, I give a client a banner, and the link. The client may put the banner/link to any website, lets say to a site called www.domain.com.
When the user click the banner, is it possible to know where he coming from(www.domain.com)?
...
Are there any recent PHP Manuals, the CHMs with the user-contributed notes out there?
The PHP guys seem to have 'dropped support' for them.
Are some of them lurking around the PHP website itself, accessible by their unlinked URLs only?
...
Hi!
I tried User(email = email) and User.all().filter('email = ', email).get(), but both of them don't work for me.
Thanks
...
I've wrote a app in c# .NET 3.5. People download it and use. I would like to know how many users do this and how many installed it. How to do this?
...
I'm looking for any decent .Net membership components which can take the membership prodvider settings from the web.config and display the users / groups on an ASP .Net web page.
I have a client requirement to be able to update / create / delete users as well as add / remove them from groups. There must be a decent control set out there...
I am using php and mysql
I am going to send 10k++ (ten thousands plus) emails to update my subscribers, and this is the first time I am going to send them. I will use php mail function, basically here is what I will do:
First get the data from database:
Select name, email FROM data
After that, using while loop to send the data:
whi...
Hi,
I would like to show a popup message to the users when ever login to my site, only when login( later on it is not required).
we are using java/j2ee for my application, and authentication provided using the Filters, once login success we are redirecting the request to the requested page(it is not the same always it depends on user a...