password protect asp.net application? [closed] - asp.net

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.
I have built an ASP.NET application that needs to be password protected. This application will be installed on multiple offline computers, and we need to make sure that when being installed it requires a password. But even if it requires a password, someone can easily copy the database and the published folder and duplicate the application on their system right?
I need a way to prevent this. Any ideas? It should only work on laptops that we have installed it on.

You could create a licensing tool like any other client app. Check the license key during app startup and occasionally during the runtime. Look at this post for ideas: Protect .NET code from reverse engineering?

Related

Retrieve Data from website and display in android App [closed]

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 am fresher for developing Android App. i have queries.
How can I retrieve website specific content and display it in android App? I don't know where to start.
In login page Activity which contains username, password and Login button Here only registered user from website can login to it.How to do validation only for already registered user from website?
XML-RPC WordPress API is the best place to start.
If you go through the API, you can easily figure out that you have all operations available for you, and all you need to do is, use a xmlrpc client library for java to call those procedures. And, this library looks decent.

How to do browser integration using c++ [closed]

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.
I am developing a download manager for Linux and i want to integrate it into firefox, chrome, opera. I am using QT. The download managers like idm, dap integrate into browsers and become somewhat default downloaders for these browsers. Is there any way other than using add-ons like flashgot or download assistant to do so.
You'll need a separate mechanism for each application to direct the download into your application, or get the user to copy the link back out, so plugins are your best bet.
Or do something entirely crazy such as monitor all the traffic and snare downloads based off clever filtering, but then you've got the probable side effect of breaking all HTTP requests.

How to create asp.net Forum [closed]

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 12 years ago.
I just want to create an asp.net VB Forum and the database should be MS Access.
No reason to be rude about this question. Here are some resources that can get you started.
http://www.asp.net/get-started is a good place for information about building your first ASP.NET application.
http://www.asp.net/community/projects#jm_starter_kits_and_samples has links to some starter kits that can get you up and running.
http://www.asp.net/downloads/starter-kits/the-beer-house is an older starter kit, for ASP.NET 2.0, but I used this a while back and it's pretty good.
As for using MS Access, I would try to get your first web application up and then ask a more specific question here on Stackoverflow when you run into some problems.

java server connection to flex application [closed]

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.
Ho to connect the java server to flex application?
Is Blazeds plays a role here (or) Remote services?
you can connect a Java BackEnd in more then a couple of ways
you can use BlazeDS and thus applying AMF to your application and binary communication between the two.
you can also work with WebServices and move Json/XML back and forth from the server to the client and vice versa.
This is a great link if you want to learn a bit about BlazeDS
http://www.adobe.com/devnet/livecycle/articles/blazeds_gettingstarted.html

what is the basic steps to build social network website? [closed]

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 12 years ago.
what is the basic steps to build social network without using the websites that provide a free social network?
Is it need a separate server? ok I can't buy the server !
How do I can start without spend any money?
You should start with a dedicated server(if you can get a static IP from your internet provider you can host it yourself from your computer, or try some free servers, but they won't be dedicated), a database(if you are going for free MYSQL or SQL Express), some form of GUI that connects to the database showing data (asp.net with visual studios express is what I would prefer). And then just like that you have a networking site...

Resources