DotNetTec is a programming blog covering topics like latest dot net technologies tutorials, c# asp.net code examples, tips and tricks, .net projects and more.
Don't wanna be here? Send us removal request.
Text
Logging into an Ektron CMS400.NET Web Site
In the previous tutorial, I have explained What is Ektron CMS? Now I will discuss the login server controls, logging in and out, and how to access an Ektron CMS400.NET website.
Ektron Login Server Control
The Login server control paints a login button on the template when displayed in a browser. When the Login server control is inserted and the project is built, the control displays the following buttons on a Web page. Read the full article
0 notes
Text
Ektron CMS Fundamental Tutorial
In this ektron cms tutorial, I will give you a brief explanation of the Episerver Ektron cms400.net, What is Ektron CMS (content management system), with documentation guide. Previously I have explained Logging into an Ektron CMS400.NET Web Site.
Ektron CMS Tutorial
Content is all information that is being served on a Web site. Web content is the textual, visual, or audio content that a site visitor experiences when browsing a website. It may include, among other things: text, images, sounds, videos, and animations. Content types in Ektron CMS are HTML content, XML Smart Forms, HTML form/survey, documents, managed files, and multimedia files, MS Office documents, Multimedia, Blogs, etc. A content management system is a software system that enables technical and non-technical users to contribute to the creation, management, and organization of content on a website. Read the full article
0 notes
Text
Exception Handling in WCF using Fault Contract
In this article, you will learn how to implement exception handling in WCF using fault contract. What is Fault Exception in WCF and why do we use it? Previously I have explained Create WCF REST Service in C#, How to Consume WCF REST Service in C#.
Exception Handling in WCF using Fault Contract
The following example will demonstrate how WCF service exception handling works using . Find the below code snippet:- Read the full article
0 notes
Text
How to Consume WCF REST Service in C#
In this blog post, you will learn how to consume the WCF REST service in the C# ASP.Net web application. Previously I have explained how to create WCF REST Service in C# with example. You can follow the below steps to calling wcf rest service:- First of all, you need to host WCF restful service somewhere on the webserver or at IIS on the local machine. In my example the URL of that XML Service: http://localhost:63663/Service1.svc/GetCustomerListXML, and JSON Service: http://localhost:63663/Service1.svc/GetCustomerListJSON. - Now, right-click on the project and select Add -> Service Reference as shown below:- Read the full article
0 notes
Text
Create a WCF REST Service C#
In this article, you will learn how to create a WCF Rest service - C# ASP.Net with an example. REST stands for Representational state transfer which is a technique to communicate on cross-platform application and exchange the data in JSON or XML format.
How to Create a WCF REST Service - C#
Now let's get started with creating a rest wcf service in the c# asp.net application. Follow the below steps:- Step 1: Create New Project and select WCF Service Application as shown below in the screenshot:- Read the full article
1 note
·
View note
Text
Web API CRUD Operations using ASP.NET MVC and Entity Framework
In this article, I will discuss asp.net web api crud operations and how to implement crud operations in web api using entity framework with C# example. Keep reading on how to create Web API in ASP.NET C#, Interview Questions on ASP.NET WEB API Read the full article
0 notes
Text
Razor Pages vs MVC - Which one is better for your project?
In this article, I will discuss Razor Pages vs MVC on how to choose in ASP.NET Core web applications. You will also see which type of web application is well suited for your project or requirement by looking at benefits and code comparison. When you create a new ASP.Net Core web application there are two different types of options available as shown below:- - Web Application (Razor Pages) - Web Application (Model-View-Controller) Read the full article
0 notes
Text
Angular Architecture Overview
In this tutorial, you will get a basic idea of angular architecture and how the front-end & back-end work together to build a real-time client application. Angular Application Architecture I love modern applications that have at least two parts a front end and backend. The front end also called the client; is the part that runs in the web browser and this is what the user sees and interacts with. So it essentially includes the user interface. For an application, we use Html, CSS, Typescript, and Angular to build the front end. Read the full article
0 notes
Text
Getting Started with Angular Step By Step
In this article, I am going to start step-by-step articles to learn Angular front-end web development from basic to advanced topics for beginners and experienced developers. You will build and deploy a real-time client application using angular, typescript, firebase, and the new awesome bootstrap which is used to create a modern website. Read the full article
0 notes
Text
How to write Software Engineer Cover Letter
In this blog post, I will share a useful tip on how to write a software engineer cover letter. If you are going to apply for your perfect job and want to make a good impression on HR. So here you will get to know what is the purpose of a cover letter with a cover letter sample pdf for a software developer, technical lead, and project manager. What is the purpose of a cover letter? A cover letter is an introductory letter that should be to the point and precise about what exactly you are looking for in your job. A good cover letter can help employers pick out the most suitable candidate for the job. Find the following cover letter samples that can help you write that perfect cover letter and get the employer's attention. Read the full article
0 notes
Text
Paypal Payment Gateway Integration in ASP.NET Core
All-In-One solution for Paypal Payment Gateway Integration in ASP.Net Core MVC that integrated with almost all kinds of functionalities such as Simple Buy, Subscription with the free and paid trial, Recurring payments using PayPal Subscriptions with post data processing. Read the full article
0 notes
Text
MySQL find points within radius from Database
In this article, you will learn how to find points within a radius from provided lat and long by writing a MySQL Query. For example, The SQL statement will find locations that are within a radius of 7 KM to the 22.607672, 88.36853 coordinate. How to get all the results within a radius from provided lat and long from MySql Query We have stored locations (latitude and longitude) in our database. Find the following query to find the features within the given coordinates and distance using MySQL. Read the full article
0 notes
Text
Find nearest location using latitude longitude MySQL
In this blog post, you will learn how to write a MySQL latitude/longitude radius query to find the nearest location using latitude longitude MySQL. For example, if you could place yourself in the center of a city and search for the nearest ATM in a radius of 1/2 KM. MySQL latitude/longitude radius Query We have stored locations ( latitude and longitude) in our database. Find the following query to find the nearest location using latitude/longitude MySQL. Read the full article
0 notes
Text
MapXtreme .Net Architecture | Developer Guide
In this article, you will get an overview of Pitney Bowes MapXtreme .Net Architecture which allows developers to create custom mapping applications that require both high-quality digital maps, and controls and instructions to manipulate those maps. It enables developers to incorporate and display many types of data onto maps and to easily add a variety of controls, themes, graphs, and other features that enable users to more effectively analyze location-based information. MapXtreme .Net Architecture MapXtreme’s powerful spatial capabilities are geared toward solving real business problems, with a powerful, user-friendly feature set. Flexible deployment options of this location intelligence developer tool include both desktop and web from a single SDK. Find the following pictorial diagram of MapXtreme .Net Architecture:- Read the full article
0 notes
Text
Running WordPress on ASP.NET Core with Peachpie
In this article, you will learn how to use or integrate WordPress in ASP.NET and Running WordPress on ASP.NET Core, without PHP, or any source files on the server. The following demonstration will show you how to add WordPress as a frontend to an existing ASP.NET Core application step by step. Read the full article
0 notes
Text
Twilio Bulk SMS Sender C# ASP.Net Core
Twilio’s SMS API helps you add robust messaging capabilities to your C# ASP.Net Core applications. Using its REST API you can send bulk SMS to multiple numbers. Whether you run a small business or a large enterprise, you can send bulk SMS to communicate with your customers, employees, and prospects. The best part is it just takes three easy steps. - Build or Import your Contact List. - Write your SMS text. - and click Send. Twilio Bulk SMS Sender / Twilio send SMS to Multiple Numbers - ASP.Net Core Read the full article
0 notes
Text
How to send SMS with Twilio in ASP.NET Core 5 and C#
In this blog post, you will learn how to send an SMS with Twilio in ASP.Net Core 5 or 3.1 using C#. So we will use Twilio as our SMS service to send an SMS message and automate a response when an SMS message is received Twilio’s SMS API helps you add robust messaging capabilities to your applications. Using this REST API, you can send and receive SMS messages, track the delivery of sent messages, and retrieve and modify message history. Read the full article
0 notes