Uncategorized
What is SEO? Basic SEO tips to boost your blog or website
.
SEO stands for Search Engine Optimization. As the full name says, it is a way to optimize to get more traffic on your blog or website. Let’s understand SEO in depth. Whenever you search something on Google, you see so many website in results. Have you ever thought why a particular website is at no.1…
How to make Money from YouTube Channel?
.
Do you know that you can make money from YouTube? And, Do you know that every day, billion YouTube videos are watched around the globe. But, How someone can make money from YouTube videos? How to Make Money from YouTube Video ? In this blog, we will see about creating new YouTube Channel and how…
All about Bulk SMS – Bulk SMS in Details
.
In this article, we will see What is a Bulk SMS Services in details and How Bulk SMS Services Works? After reading this article, you will be able to understand All about Bulk SMS services. What is a Bulk SMS Service? Bulk SMS service is used to deliver a large number of SMS to mobile…
10 Differences between WhatsApp and WhatsApp Business App
.
We all have been using WhatsApp for day to day communication with friends, family, colleagues. But, this is for an individual and not for business user. In January 2018, WhatsApp released WhatsApp Business app for small business owners. In this article, we will see the differences between WhatsApp and WhatsApp Business. Many of you will…
ASP.Net Core MVC for beginners
.
This article includes the ASP.NET Core MVC web development introductions for beginners. If you are new to MVC, then read my earlier blogs on ASP.Net MVC. This article explores the basics of building an ASP.NET Core MVC web app. This article includes the following topics- Introduction to ASP.Net Core MVC Routing in ASP.Net Core MVC…
Creating a High-Performance ASP.Net Core CRUD App with ADO.Net
.
In this blog, I am going to create a web application in ASP.Net Core to demonstrate CRUD operations using ADO.Net. Those people who already know about ASP.NET, they will understand this example very well.Those who are freshers, I would request you to read my previous blog so that they don’t get confused. To demonstrate this…
How to access SQL Database Connection string in .Net Core?
.
A database connection string is a very basic task for a developer who is working on ASP.Net. But defining a database connection string in .Net Core and reading back into C# code is a little different than the traditional ASP.Net framework. In this article, we will define a database connection string and then get its…
ASP.Net Core Razor Pages handler methods
.
In this blog, we will see ASP.Net Core Razor Pages handler methods in detail. Also, we will explore how handler methods are invoked in Razor pages based on user action. What are handler methods in .Net Core Razor pages? Handler methods in ASP.Net Core Razor pages are available with nice features that will be loved…
Razor Pages vs MVC – Which one is better for your project ?
.
Before ASP.Net Core 2.0 we had an MVC option to develop a web application. After the release of .Net Core 2.0, a developer has one more option to create a Web Application in .Net Core i.e. .Net Core Razor pages.In this blog, we will see the differences between Web Applications (Razor Pages) and Web Applications…
Configure and Host ASP.Net Core Application on IIS
.
In this blog, we will see how to host an ASP.Net Core application on IIS server. Hosting ASP.Net Core app on IIS is not so different than hosting a traditional ASP.Net web application. If you are new to ASP.Net core, you may read this blog – ASP.Net Core Blog Pre-requisite to host ASP.Net Core application…
Transforming Your Data Management Strategy: Top 10 Benefits of Storing Data in the Cloud
.
Today “Cloud Computing” is accelerating like a rocket in IT industry. You can say that it is Cloud era and will continue for many years. If you want to know more about Cloud Computing, Click Here to explore more about it. Here I will write about “Benefits of storing data in Cloud” or Why Cloud…
Know about .Net Core Command Line Interface (CLI) Tools
.
The .NET Core command-line interface (CLI) is a new cross-platform tool for developing .NET based applications. Tools such as Integrated Development Environments (IDEs) can rest on CLI. CLI can be thought of as a foundation of IDE like Visual Studio. CLI command name new restore build publish run test type clean help store add package…
Microsoft SharePoint 2019, Office 2019 Release Date and related things to know
.
Hello Everyone, Microsoft’s another big release of office is Comming Soon i.e. Office 2019 with SharePoint 2019. Microsoft’s current Office version is 2016 and now they are releasing Office 2019. As per Microsoft, Office 2019 will be released in second half of 2018 and this could be a Preview version. Office 2019 will include Apps for…
What is OAuth?
.
OAuth stands for Open Authorization for token based authentication and authorization over web.OAuth was first introduced in year 2007. In year 2010 OAuth2.0 was introduced. OAuth acts as an agent for a user to fetch the information.OAuth allows a user’s account information to be used by a 3rd party such as Twitter, Facebook, Google, without…
Angular JS model and controller
.
Angular JS Model: ng-model directive in Angular JS is use to bind the value of an HTML control to any variable. <div ng-app=”testApp” ng-controller=”testCtrl”> Name: <input ng-model=”name”> <h1>Hello : {{name}}</h1></div>
SQL Server Interview Questions Part2
.
Few important questions for SQL Server asked ASP.Net Developer. Part- 2 Indexes-Indexes are used to query data faster from a table. Indexing avoids full table scan. Create Index IX_customer_amount on tblcustomer (purchase_amount ASC) So this index will store purchase amount in ascending order.Purchase amount20005000550075009000 To view all indexes on a table either go to object…
Use SharePoint Searchservice to get content from public site
.
How to crawl a public website content into a SharePoint site?Just now i developed this module, the scenario is:I have a page in SharePoint and I want to search content from other public websites and want to show the result in a data source into my Page.First you need to configure search service.Create scope, each…
How to access SharePoint List with List Web Service
.
SharePoint List Web service allow developers to access, manipulate List and List items through a service url. Generally List web service url format is : http://site/_vti_bin/lists.asmx Now lest start consuming this service and manage SharePoint List. Open this url: http://spsite:1985/_vti_bin/lists.asmx Open Visual Studio 2010. Right click on project and add service reference. Then click on Advanced……
Bind Drop-down with SharePoint List and display list items in a Gridview
.
In this blog, I will explain about below point through C# code:1. Bind all list in a dropdown2 Load List items in a Gridview once a user changes list name in dropdown. You need to create a visual webpart in Visual studio 2010. Visual WebPart ASCX code: <asp:DropDownList ID=”ddlList” AutoPostBack=”true” runat=”server” onselectedindexchanged=”ddlList_SelectedIndexChanged”></asp:DropDownList><p> <asp:Label…
Difference between Stored Procedure and Function in SQL
.
Stored Procedure vs Function 1)Functions must return a value. Stored procedure need not be. 2)Stored procedures can be called using EXEC command where as Functions can be called from another SQL Statement. 3)Stored Procedures are precompiled. Functions are not precompiled. 4)Generally Stored procedures are used for executing business logic where as Functions are used to…
