ASP.NET MVC application, shall I use genereated database for all business logic [closed] - asp.net-mvc

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'm new to MVC web dev. As you know, Visual Studio generated local database to store the user credential, it has the UserProfile table. Shall I create a new database or use the auto generated local database and just create new tables there?

It will easier to use the existing database. And you don't even have a requirement to have a separate database.

Related

New instance in TWebBrowser [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 9 years ago.
I would like to use the TWebBrowser Component in a complete new instance independently from the instance of the Internet Explorer. Is there a way to start TWebBrowser (e.g. in private browsing mode) so it would have it's own instance of cookies, cache, history, etc.?
Try delphi chromium.
Based on Chrome browser, fully autonomous and more html5 compliant....
You can define the directory where to store cookies, and then, clean them as you like...

Drawing using asp.net mvc [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 9 years ago.
Is there any way to draw a simple image like some lines with asp.net mvc?
Any component or tool?
Actually user wants to draw a simple map and save it to database. Any idea?
I think they warn against doing it in ASP.NET but we've used the graphics libraries to do it before. http://msdn.microsoft.com/en-us/library/5y289054.aspx
try to understand mvc first, its a framework on top of ASP.NET not a client side tool. You could try HTML5 Canvas

Load data from database SQLite in iOS [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.
Do you know any tutorial that tells me how can read the data from sqlite database SQLite and put them in a table?
i think you should try this one, hope this helps
and here's one more
There are a bunch of tutorials dedicated working with Core Data and SQLite on that site, i believe it may help

IOS: create a little encyclopedia [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 want to create an app where I have a table view and when I select a row where inside is written a name (at example "house") it give me in a textView the explanation of its meaning. What's the approach to do this app? I sould use a database as core data? but what's the way to take the text for every word? Can I use txt file or what? Can you help me?
If you want to store the data locally, I'd go either for core db, or xml file, depending on the kind of data. When you create a project in XCode with core data enabled, you can see how the crud is done.

Creating a stock portfolio in rails [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 new here and new to ruby on rails.
I am trying to create a rails app where users can create their own stock portfolios.
I want to use the yahoo finance gem but i don't know where to start .
I have created the rails login using devise .
Any tutorials out their ?
Thank you
You should prototype this on paper first, make a pretend portfolio on a notepad.
Once you have found what you want to store, create diagram out of it then make your models.

Resources