In today's digital landscape, having a strong online presence is crucial for businesses to thrive. One of the key factors that can significantly impact your online visibility and success is Search Engine Optimization (SEO). By optimizing your website and content for search engines, you can attract more organic traffic, reach your target audience, and increase your brand's visibility. So, what... By Amphy Technolabs On 24 May 2023 Viewed: 65
![alt text][3] WordPress has become an essential tool for businesses of all sizes in building a successful online presence. A well-designed and optimized website is crucial for attracting and retaining customers, building brand recognition, and generating revenue. WordPress provides businesses with a powerful platform to build a website that meets their specific needs and requirements. With... By Alena Mage On 12 May 2023 Viewed: 58
WordPress has become an essential tool for businesses of all sizes in building a successful online presence. A well-designed and optimized website is crucial for attracting and retaining customers, building brand recognition, and generating revenue. WordPress provides businesses with a powerful platform to build a website that meets their specific needs and requirements. With its vast array of... By Alena Mage On 12 May 2023 Viewed: 26
WordPress has become an essential tool for businesses of all sizes in building a successful online presence. A well-designed and optimized website is crucial for attracting and retaining customers, building brand recognition, and generating revenue. WordPress provides businesses with a powerful platform to build a website that meets their specific needs and requirements. With its vast array of... By Alena Mage On 12 May 2023 Viewed: 24
Shopify is one of the most popular e-commerce platforms for small and medium-sized businesses. However, for larger enterprises with complex needs, Shopify Plus is the way to go. In this blog post, we'll take a closer look at what Shopify Plus is and why it may be the best choice for your business. Shopify Plus is a fully-hosted, cloud-based e-commerce platform designed for high-growth,... By Amphy Technolabs On 11 May 2023 Viewed: 10
PHP is a popular programming language used for web development. It has been around since 1994 and has evolved to become one of the most widely-used languages for building dynamic websites and web applications. In this blog post, we will explore how **[PHP web development][1]** can benefit your business in terms of scalability, functionality, and cost-effectiveness. **How PHP Web Development... By Alena Mage On 04 May 2023 Viewed: 35
The procedure for **[strike off company][1]** typically involves the following steps: **Assessment of eligibility**: The first step in the strike off process is to determine if the company is eligible for strike off. This may involve checking that the company has ceased trading, has no assets or liabilities, and is not involved in any legal proceedings. **Preparation of documents**: Once... By microvista On 09 Feb 2023 Viewed: 779
<p>Do you find it difficult to process life and find solutions to your problems? Perhaps it could be confronting your personal, professional life or even home life.</p> <p>Couples, families, and individuals can seek counselling at the McDowall Integrative Psychology & Healthcare in Toronto for a range of difficulties.</p> <p>You could improve your position by consulting with a counsellor.... By McDowall Integrative Psychology & Healthcare On 31 Jan 2023 Viewed: 141
In the last few years, the food delivery business has been growing like there is no tomorrow, and we all know that Uber eats and Swiggy is a huge success. If you are an entrepreneur and looking to start a food delivery business, then hire dedicated developers from our [food delivery app development company][1]. We have great experience in delivering the right solutions to our customers. The... By E-commerce App Development- India App Developer On 29 Jun 2022 Viewed: 1,183
There are billions of people who use smartphones, and it is growing each day. People spend half of their total screen time on phones. With the increasing usage of smartphones, mobile applications are in great demand. One of the major reasons app development companies are in huge demand. We at iQlance design, develop, and deliver innovation in applications. <br>Services we offer are: <br>**IOS... By iQlance - Top App Development Company Canada On 25 May 2022 Viewed: 574
Microsoft is ending the official support for .NET Core 2.1 from August 21, 2021 which means Microsoft will no longer be providing updates, security fixes and technical support for it beyond the announced date. Microsoft is strongly advising users to upgrade their Microsoft products and .NET Core applications to the supported successor version that is .NET Core 3.1 or .NET 5.0 to continue... By Jeff Harvey On 22 Apr 2021 Viewed: 4,224
*“For the first time in Microsoft .NET history, you can build cross-platform Web Apps and deploy them on Windows, Linux and Mac OSX devices.”* ASP.Net core is an open-source cross-platform framework that offers MVC structure, web API, and all the services needed to build a specific enterprise-grade web application. It is an emerging and feature-rich framework that offers speedy performance,... By Jeff Harvey On 11 Jan 2021 Viewed: 2,664
This Blog brings out the synopsis of using dot net core technology to develop a banking/financial application. Along with this it also speaks about the future, benefits, importance, and features of .net core. We here will be talking about the Digital money with ASP.Net core technology and the below-mentioned topics that will help you in understanding the ASP.Net core for banking and finance... By Jeff Harvey On 11 Jan 2021 Viewed: 993
After brainstorming and deep analysis 79% of big companies, enterprises, or businesses found 2 options to convert ideas into reality with the help of technology by building software, Robust mobile app development, customized website. First is, You can have your in-house team that includes Web designers, designers, Mobile application developers, Marketers, and Programmers. The con having of the... By Jeff Harvey On 11 Jan 2021 Viewed: 151
Show option group in Angular with select and align group items properly. There is nothing special to Angular if you already know the ngFor loop. You are just missing the HTML part `optgroup`. We are going to see some working examples by using JSON data to show, you can use any service or data from anywhere. First we will see some pure HTML examples with hard coded values so we can understand... By Ali Adravi On 04 Apr 2019 Viewed: 16,571
Catch every error in applicatoin and log either to a file or in database is a good idiea. But how to catch every error in application and show a proper error page or page not found page? We will try to see how easily we can acheive it and how to log error in a file by using the microsoft provided logger feature to log error in a text (.txt) file. If you will open the startup.cs file in any... By Ali Adravi On 30 Jan 2019 Viewed: 5,211
I am going to demonstrate the use of a very popular mocking framework, Moq, to mock database calls. The example in the article is an Order Processing class, mimicking the order processing system. For the sake of simplicity, I am focusing on fetching an order from database (by order Id), adding 10% GST on the amount and then saving it back to database. public class OrderProcessing ... By Chinmay C Dey On 28 Nov 2018 Viewed: 2,359
Security is the main feature of any application, we will use in this article Web API 2 bearer token, created through Owin oAuth, which we created in our previous article. Pass Bearer token with every HttpRequest with the help of HttpInterceptor. In this article we will see only the authentication and guard the pages. We will implement refresh token in next article because might be you are here... By Ali Adravi On 14 Oct 2018 Viewed: 8,887
Token base authentication expires over a fixed time, to overcome on it we need to use the refresh token. We will try to create the token as well as the refresh token after successful login, refresh token will be used to generate a new token if current token is already expired and it is not too late. If you are at this page after reading many online articles on how to implement Owin, OAuth,... By Ali Adravi On 08 Oct 2018 Viewed: 17,063
Create Token with user credential & roles and authorize action methods based on role in Web API is the topic we will cover in this article. We would need to pass token in every request and decorate action methods with [Authorize(Roles = "Admin, Manager") etc. that's only the code we will need to complete our role based authentication. Check my previous article [OAuth Web API token based... By Ali Adravi On 04 Oct 2018 Viewed: 6,455