Posts

Showing posts from January, 2021

How to create a mvc project in asp.net (Visual Studio)

Image
Hello Guys, We will learn how to create a  MVC Project in asp.net with MODEL, VIEW, CONTROLLER. As we know that Asp.net is give us a multiple options for programming language like C#, Java, Angular Js, React Js, Node Js and more integration inside our projects. So Today topic is how to create a MVC project in asp.net application. I am attaching snap of project step by step guys just follow and create your first application in mvc. Here I will teach you main error during adding project so guys please read it carefully and be a part of asp.net programming. Step One  just open visual studio and click on FILE choose NEW  and click on PROJECT Now Step Two After click project Just just insert your project name Like ( Online_Grocery ) for example name and click on OK wait for next window. After this step now this is the final options for your project you will choose which is the right option for you. Here is some option from asp.net application what is the base of your project s...

How to add google map in asp.net c# mvc from SQL server database.

Image
Google map integration in asp.net mvc from sql server. Hello users. it is the very important topic how to connect google map in asp.net project in real time. Now we will create a database in sql server after create a database we create a table with "Table Name" like Mytable including some fields. Like

What is Html Learn Html online.

Image
What is Html code? HTML ( H yper t ext  M arkup  L anguage) is the code that is used to structure a web page  and its content. For example, content could be structured within a set of paragraphs, a list of bulleted points, or using images and data tables. As the title suggests, this article will give you a basic understanding of HTML and its functions. what is HTML? HTML is not a programming language; it is a  markup language  that defines the structure of your content. HTML consists of a series of elements , which you use to enclose, or wrap, different parts of the content to make it appear a certain way, or act a certain way. The enclosing tags can make a word or image hyperlink to somewhere else, can italicize words, can make the font bigger or smaller, and so on.  For example, take the following line of content: I love programming If we wanted the line to stand by itself, we could specify that it is a paragraph by enclosing it in par...

How to earn money from mobile app and website.

Image
 How to earn money in dollar from your mobile app and website. Hello Users It's very simple you should some knowledge about coding and understand about apps. This is my first post for how to create a mobile app free in very easy step.  step 1 just open your mobile playstore and download SKETCHWARE app. Step 2 After installing this app just open and create a project in SKETCHWARE.

How to create html page and coding for beginners

Hello Dear. welcome to webapp Snippet you are a part of my blog. Today I am going to explain about first html page with all attitude of html and i hope you will do best after this post.

How to permanent login session in asp.net mvc

State management State can be stored using several approaches. Each approach is described later in this topic. STATE MANAGEMENT Storage approach Storage mechanism Cookies HTTP cookies. May include data stored using server-side app code. Session state HTTP cookies and server-side app code TempData HTTP cookies or session state Query strings HTTP query strings Hidden fields HTTP form fields HttpContext.Items Server-side app code Cache Server-side app code This code will help you for permanent login session public class Startup {     public Startup(IConfiguration configuration)     {         Configuration = configuration;     }     public IConfiguration Configuration { get; }     public void ConfigureServices(IServiceCollection services)     {         services.AddDistributedMemoryCache();         services.AddSession(options =>         {   ...