How to take a screenshot on Google Pixels?
Steps to take a screenshot on Google Pixels Hold down the power and volume-down buttons for a couple of seconds. At the top of the screen, you’ll see the Screenshot capture.
learn and grow together
Steps to take a screenshot on Google Pixels Hold down the power and volume-down buttons for a couple of seconds. At the top of the screen, you’ll see the Screenshot capture.
Steps to take a screenshot on Google Nexus Hold down the power and volume-down buttons for a couple of seconds. Just swipe down on the notification. You will also get options to share the screenshot.
To show HTML data from a database in an ASP.NET MVC front-end view, you can follow these steps: Step 1: Retrieve the HTML data from the database You can retrieve the HTML data from the database using Entity Framework or any other ORM tool or data access method you are using. Here’s an example using…
Read More “ASP.NET MVC: How to show html data from database to front end view” »
Famous Buddha Quotes on Life “Conquer anger with non-anger. Conquer badness with goodness.” – Buddha “There is nothing comparable to one who is Awakened.” – Buddha “Radiate boundless love towards the entire world — above, below, and across.” – Buddha “When watching after yourself, you watch after others.” – Buddha “Resolutely train yourself to attain…
How to enable cors in WebApi to handle request from different subdomains? I created my webApi which was hosted on different subdomain. When I was trying to access it through Angular, I was getting error with Access-Control-Allow-Origin. In my research I found I need to enable Cors to handle cross origin requests. Below is the…
Read More “How to enable cors in WebApi to handle request from different subdomains?” »
Leadership is not about a title or a designation. It’s about impact, influence and inspiration. Impact involves getting results, influence is about spreading the passion you have for your work, and you have to inspire team-mates and customers. – Robin S. Sharma I’ve missed more than 9000 shots in my career. I’ve lost almost 300…
In order to test my I was testing my webApi post method, I need to send model object as parameter. I was sending it as raw data but it was giving error “{“Message”:”The request entity’s media type ‘text/plain’ is not supported for this resource.”,”ExceptionMessage”:”No MediaTypeFormatter is available to read an object of type ” from content…
Read More “Error while sending json model in POST request to web API service using postman” »
WCF (Windows Communication Foundation) Interview questions 1- What is Windows Communication Foundation (WCF) ? WCF is a framework to create a service-oriented application. WCF services can send the data asynchronously from one endpoint service to another service. The endpoint service can be the part of the continuous available service that is hosted by the IIS….
Read More “WCF (Windows Communication Foundation) Interview questions” »
ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. It is an ideal platform for building RESTful applications on the .NET Framework. It supports different formats of response data. Built-in support for JSON, XML format. It can be…
The DOM (Document Object Model) is a programming API for HTML and XML documents that defines the logical structure of documents and the way a document is accessed and manipulated. The DOM represents the structure of a web page, with DOM elements being the web page components like a text box, etc.