Quantcast
Channel: Microsoft Techies
Browsing all 430 articles
Browse latest View live

flights compare

http://www.kayak.com/flights

View Article


C# difference between connection.close() and connection.Dispose()

conn.Close(); //If you use this, no need to initialize SqlConnection , you can open using conn.Open();//conn.Dispose();//If you use this, it completely release the connection object and cannot be...

View Article


Accenture .Net interview questions

Data Structure & Algorithmsc# exceptional handlingStructured Exception Handling in C#abstract class and interface differencec# must implement methodc# must inheritadvantages of using interfaces...

View Article

C# WEB API

http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/tutorial-your-first-web-apihttps://msdn.microsoft.com/en-us/library/hh833994(v=vs.108).aspx

View Article

C# Single Page Application

Single Page Application: KnockoutJShttp://www.asp.net/single-page-application/overview/introduction/knockoutjs-templateSingle Page Application (SPA) Using...

View Article


C# Tutorials

https://msdn.microsoft.com/en-us/library/aa288436(v=vs.71).aspx

View Article

Single Page Application with ASP.NET Web API and Angular.js

http://www.asp.net/web-api/overview/getting-started-with-aspnet-web-api/build-a-single-page-application-spa-with-aspnet-web-api-and-angularjs

View Article

Jumpstart KnockoutJS with ASP.NET MVC/Web Api

http://www.codeproject.com/Articles/755386/Jumpstart-KnockoutJS-with-ASP-NET-MVC-Web-Apihttp://www.devcurry.com/2013/08/building-knockoutjs-based-client-for_16.html

View Article


CRUD with SPA, ASP.NET Web API and Angular.js

http://www.codeproject.com/Articles/832288/CRUD-with-SPA-ASP-NET-Web-API-and-Angular-js

View Article


Getting started with AngularJS and ASP.NET MVC

http://www.codeproject.com/Articles/806029/Getting-started-with-AngularJS-and-ASP-NET-MVC-Par

View Article

Aras Item update using AML

Step 1 lock: It will lock all revs of documents<Item type="Document" action="lock" where="[Document].item_number='ABC'"></Item>Step 2 Find user locked_by_id:<Item action="get"...

View Article

Aras ApplySQL

Open AML StudioConnect any Aras instanceSelect "ApplySQL"Use below sample query to run SQL statements<sql>  update MANUFACTURER_PART with (rowlock) set MODIFIED_ON = '2009-03-27 11:05:00.000'...

View Article

Web API

http://www.c-sharpcorner.com/UploadFile/4d9083/how-to-create-web-api-in-Asp-Net-mvc/http://www.c-sharpcorner.com/UploadFile/2b481f/testing-of-Asp-Net-web-api-method/

View Article


Image may be NSFW.
Clik here to view.

HTTP Overview

The Hypertext Transfer Protocol (HTTP) is an application-level protocol for distributed, collaborative, hypermedia information systems. This is the foundation for data communication for the World Wide...

View Article

Using HTTP Methods (GET, POST, PUT, etc.) in Web API

http://www.exceptionnotfound.net/using-http-methods-correctly-in-asp-net-web-api/

View Article


I have 300K records in SQL, out of that 1k records are having wrong data in...

Try this...You may have better approach, but this is one approach.1.Get right data from Source System to flat file with primary key value and column value.EX: Employee Location is wrong, in this...

View Article

How to find SQL Sessions

sp_who2

View Article


Image may be NSFW.
Clik here to view.

Unsafe code may only appear if compiling with /unsafe”?

View Article

C# .Net execute from command line

Open CMD.c:\users\test\Documents>Open Notepad. Ex:c:\users\test\Documents>notepad hello.csWrite sample code.Ex:using System;class Program{static void Main(){Console.WriteLine("Hello");}}Save...

View Article

c# nested dictionary foreach key value pair

 Dictionary<string, Dictionary<string, string>> objData = new Dictionary<string, Dictionary<string, string>>();//Assign data to  nested dictionary...

View Article
Browsing all 430 articles
Browse latest View live