Access to SQL Server through .Net web application [closed] - asp.net

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a quick way to create a web application that accesses an SQL server database and displays tables of choice, enabling me to create new entries in those tables.
Any built in frameworks in Visual Studio 2017 that can be used? Or other easy to use ones?
Thanks

Probably the most simple way to create website that performs simple CRUD maintenance on database tables is to use MVC scaffolding, which will generate simple screens and code to work with data. There's a nice "how to" blog entry at https://www.red-gate.com/simple-talk/dotnet/asp-net/using-scaffolding-to-create-mvc-applications-with-visual-studio/

Related

Can I use a third party view engine for Razor Pages? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
Although it is called Razor Pages for a reason I'm just wondering if it is possible to use a different view engine, say Spark Engine or any other View Engine you can think of.
I also wonder the same thing for Blazor.
Edit: This question was previously closed because it was thought that I was looking for recommendations. I'm not looking for recommendations, I want to learn if it is possible to change the view engine of a Razor Pages project.
There is a microsoft project that changes the rendering engine to use blazor for native platform apps.
It is in very early stage, but shows the possibilities.
https://learn.microsoft.com/en-us/mobile-blazor-bindings/
I believe it’s completly possible, but very complicated, considering that you are going to need rewrite all the bindings and connections that blazor offers.

Are there any real world open source backbone.js web applications using .net framework (preferably asp.net mvc) [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Are there any open source asp.net web applications which are using backbone.js and preferably those that have composite views and models being shared among views.
It will be a good to have the source code of some real world applications to understand backbone more.
While the EpicWinHosting web is real world it is not open source.
However they have given a very detailed blog with code examples which might be what you are looking for.
Have you seen the Todo List app on github?

Document Management System for asp.net [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have searched through the net for the open source project of Document management system for asp.net, all I got was CMS.
Is their any Document Management System open source for asp.net?
I do understand that Sharepoint can do this task for me, but I am looking for a asp.net solution.
Have a look at sensenet http://sensenet.codeplex.com/
I am trying it at the moment as I am also looking for a .net/asp.net solution. It seems very promising. So far it seems like something I might be able to use. The only issue is the GPL license but am seeing what the deal with that will be. I.e. is you wanted to use it in collaboration with other software.

Open source tools for generating asp.net code [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In some crucial projects I relelized that time is one of the biggest concern while developing a project, specially a web application.
Specifically about ASP.NET, does any Open Source tools exists for generating code for helping developers [like codesmith] to work smarter rather than work harder?
I think T4 templates is what you need.
Check this out: http://msdn.microsoft.com/en-us/library/bb126445.aspx
I'm not sure if your problem is that you want a code generator or something to help you generate automated tests to be run in different browsers. Since codesmith does .NET I'll assume you wanted automated tests for various browsers.
Check out selenium

asp.net pagination code samples [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I need some asp.net pagination code samples.
I would like suggestions on open source apps from where I can pick up code.
I would like suggestions different open source apps for different techniques and if possible give hints on the technique used.
Here's a few to get you started:
Paging In ASP.NET
Paging Database Results in ASP.NET
Custom Paging in ASP.NET 2.0 with SQL Server 2005

Resources