Create Multi language website in asp.net with database - c#

I'm planning to do a multilanguage asp.net application using database.
do not use any resources like (globlization and localization)
please give me some sample project (or) a reference.
do not use any Dll's and third parties. please suggest me the solution.

Refer to the following:
Creating multilingual websites - Part 1
Multi-lingual web applications using ASP.Net 4
Multilingual Applications in .NET

Related

Use SQLite in ASP.NET MVC web application instead of SQL Server

How to create a small ASP.NET MVC web application using SQLite database? I have tried so many ways and searched in web all of them showing using .NET Core & ASP.NET Core MVC, I don't need this.
But I need to create an ASP.NET MVC web application. I have tried by adding extension in Visual Studio 2019. I am not satisfied like using SQL Server.
I need just how to add SQLite to my ASP.NET MVC application. Please ask me if you need explanation. Please suggest a link or Youtube video. I am a beginner

ASP.NET Core web app in C# and windows application in VB.net combination

I would like to know how to combine a VB.Net Windows application and C# ASP.NET Core web app together. I created a web app using C# because VB.net is not supported. What is the best method to do it?
Create DLL file for asp.net core and import to VB.Net is possible or not? if it is possible how to create dll file in asp.net core?
Web application and windows application are separate purpose applications. Not the same applications. The main application is a windows application. it some values create and store in SQL Server then those values represent in web application using SQL Server.
I can see two ways:
Create a .NET Standard library with all DB operations and consume this project by both VB.NET Windows application and ASP.NET Core Web application.
Create a Web API application which will expose all DB operations as endpoints and again consume it by both apps.
Second option requires more work to do, but has better logic separation.

How to add ASP.NET MVC 5 to Web API 2 project?

I have begun with Empty web solution including folders and core references of Web API. The solution has developed to expose some important functionalities and data to mobile applications. Now I need to improve the application into ASP.NET MVC 5 application. What are additional features and configurations I have to perform after adding MVC 5, JQuery and Bootstrap references(From NuGet)? Is there any easy methods that I can follow to update them at once?
(Please consider that I have added so much features in my Web API solution. So starting with new solution is not an option to me now.)

Building a REST API for mobile apps(Android & iOS) for an C# asp.net ecommerce website

I am new to APIs development and have to start building a REST API for the e-commerce website to be built and can be used by 3rd party: mobile app development company.
The eCommerce site is written in C#, ASP.net.
I have read about SOAP, REST, RESTFul on google.
My doubts are :
Where do I start? I have never created any API's before. Please mention the steps to start over.
The REST API is to be used with both Android and iOS mobile app. So, do we have to create a different client application for both?
Do we use some frameworks? If yes, then which frameworks to use?
As the website is written in dot net. Do we use Java or dotnet for REST API development?
What is the best way to create the REST API for mobile apps?
Please help me with my doubts.
Thanks in advance.
Here is Tutorial to build RESTFUL API in .NET.
My knowledge is in ASP.NET so I leave the Java guide for experts in that field.
RESTful API provided by Microsoft - which is called Web API - is a part of ASP.NET MVC, so you should start learning ASP.NET MVC, it's pretty easy for ASP.NET guys to learn ASP.NET MVC.
No, when you developed your Web Service, both iOS and Android would be able to communicate with your Web Service.
For Authentication, you gonna need libraries like Owin.
Since your main website is in .NET and not MVC, you should keep the Web Service files separate, for this, you can put Web Service file in a separate folder on the same host which the main website is, then create a sub domain to access the Web Service. By the way, you can create your Web Service using Java too, since it is separate from the main website, it makes no difference which technology you use.
The best way to create a REST API for a mobile app is if it is done by an expert! ;) There are many tools and frameworks out there that can be used to create RESTful Web Services, each one of them has some pros and cons, I prefer to use the one I know the best, which is Microsoft ASP.NET Web API, you should choose based on your current expertise.
P.S. If you gonna start learning ASP.NET MVC, I recommend to learn ASP.NET Core, which is the latest version of ASP.NET MVC, and is the future of this technology.

Need sample Applications to develop my own site and application in asp.net using c#

I am developing a small and simple web application for a hotel in asp.net using C#. It is a web site which gives hotels information and we can order items from that site. I want a reference source code to develop this application.
Before a year there were sample application on www.asp.net such as myWebPageStarterKit. But now there are not sample applications. From where i could get such sample applications..??
I would recommend using ASP.NET MVC 2 for new web development.
You can find proper 'real-world' sample application called NerdDinner and 185-page PDF walkthrough 'how-each-line-was-written' on Code Plex. Nerd Dinner has many nice features, like intergration with maps or OpenID.
Running app is here: http://www.nerddinner.com/
You can also check Open Source Projects and Starter Kits on www.asp.net
ASP.Net Official website still have a lot of open source Applications (eCommerce,CMS,etc )
You can check them . But in your case you need an example for Hotel management system or some thing like this.. I recommended to visit sourceforge.net and search for Hotel Management System . Also you can check sourcecodester.com, Codeproject.com .....
I hope this will be useful

Categories