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...
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 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.
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.
What is the difference between using the built in SQL Server Database (.mdf) over using sql server management studio? Is there any differences or benefits of using one or the other for say a CMS?
answer was here What is an MDF file?
Both Visual Studio and SQL Server Management Studio work with the same .mdf files. These are simply the data format files that make up a SQL Server database. SSMS will give you a much more rich set of administration features to help in your database maintenance.
If you are going to be building full system, you will want to begin using SSMS at some point in my opinion. This will give you some easier GUI interface options to work with for administrating.
Another thread on .mdfs
Starting with SSMS
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.
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
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?