Showing posts with label .Net. Show all posts
Showing posts with label .Net. Show all posts

Wednesday, 20 July 2016

Installing Asp.net Core

Steps To Install Asp.net Core     Step 1. Before Installing Asp.net Core Let Fulfill Its Prerequisites As Below - First you need to Install Visual Studio 2015 . You Can Download Free Visual Studio Community Edition From Link below - Download Visual Studio 2015 For...

Wednesday, 6 July 2016

Object Pooling in Csharp

What is Object Pooling in Csharp ? Object Pooling is Technique for Efficient Resource Allocation.A Performance Optimization Technique that is based on using Pool of Pre-Allocated Resources Such of Objects For Efficient Resource Allocation . It refers to Reusing of Allocated Memory again and again instead of demanding for more memory as there are chances that more required  memory...

Tuesday, 28 April 2015

ASP.NET MVC Action Return View Not Changing URL

The return View(.......) in Action of Controller is the statement that we use to return the view View for a Particular Controller Request . But Return view will return the view exactly you want and render the view but it will not change or target the user to target url  . The simple solution is below - Code For an Action - [HttpPost] public ActionResult Start(SomeViewModel...

Wednesday, 11 February 2015

HTTP Error 500-22 - Internal Server Error The page cannot be displayed because an internal server error has occurred

Now At 11:47 PM I am going to write about how to solve HTTP 500.22 - Internal Server Error . This error is really very Bad Boy . It only display Error Message and does not give any detailed information about error as we don't normally allow for that . So Now I am going to give...

Sunday, 25 January 2015

Crud Operation in AngularJS With Bootstrap

In My Previous Article I explored about How to setup angularjs in Visual Studio and also Explored concepts of What , why and when To use AngularJS . In this article I am going to do CRUD Operation in AngularJS . CRUD operations means Insert , view , Update and Delete Data...

Why we should use AngularJS

What is AngularJS Why Its Called AngularJS Why To Use AngularJS When To Use AngularJS So , Today i started to explore the top-most question that always stuck our mind when we start with new technology . Like i already know my stuff then when i started with angular these above are basic questions that stuck my mind that what is angularjs and why i should use it and when ...

Setting up Angularjs in Visual Studio Express

AngularJS is a unique framework that without doubt will shape the web development space in the years to come . AngularJS is a recent addition to the client-side MVC frameworks list, yet it has managed to attract a lot of attention, mostly due to its innovative templating system,...

Saturday, 27 September 2014

BootStrap Technology For Responsive Websites

Bootstrap is very good  and simple to use technology for making your website Mobile Compatible . It helps to make your website compatible with every you open it . Regardless of the screen size where we opens the website it provides full Responsiveness Bootstrap File Structure bootstrap/ ├── css/ │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── bootstrap-theme.css │...

Wednesday, 20 August 2014

save to google drive button javascript code

This is a simple javascript code to upload file from your computer to google drive using google drive api <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server">     <title></title> </head> <body>     <form id="form1" runat="server">    <script src='https://apis.google.com/js/platform.js'></script> <div...

Sunday, 3 August 2014

Mixed mode assembly is built against version 'v2.0.50727' of the runtime

Error :- Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded in the 4.0 runtime without additional configuration information Error Explanation - During using Sqlite Database with Csharp Applications you may suffer from this error Don't...

Friday, 1 August 2014

Tuesday, 29 July 2014

How to use XML Parsing And TableLayout in Mono Android

In order to start with XML Parsing or XML data Handling in Microsoft .NET Framework first we need to know about what classes or namespaces are available to us for using or dealing with XML Document or XML Data in .Net So Here is list of XML Namespaces available for XML Processing...