Software Consultancy
Got stuck with some complex problem or Cant decide the perfect architecture ? - Call us.
Got stuck with some complex problem or Cant decide the perfect architecture ? - Call us.
Are you planning to automate your dream and make it a brand success? - Answer is Train IT .
Want to train your people in latest technologies in industry? - Answer is Train IT.
This part of the series is for those people who are tired of executing two command prompts. One for TypeScript compiler and one for web server. Complete Series Day 1 – Part 1 Day 1 – Part 2 Day 2 Day 3 Day 4 – Part 1 Day 4 – Execution trick Day 4 –
Lab 11 – Download Source Code Finally completed Day 3. 🙂 I have seen people getting scared because of long and big articles hence I have decided to write multiple small article for each day instead of writing one big article. In each article we will cover 1 or 2 or max 3 labs. In
I always see a lot of confusion among most of my students with regards to these three terminologies. Let’s have a quick talk on them. When we create Cube in SSAS, it consist of two things – Dimensions data and partitions. Partitions hold measure group data. By default for every measure group one partition will
In all my trainings, very first question I face is, Why all of the sudden angular is in demand? Why JavaScript frameworks become so much important all of the sudden? Let me put some light onto it. Today, we are moving towards cloud, where we will be charged based on how much we utilize server
Whether it is Angular or knockout or any other client side library, in all my training I always make one statement. “Write less JavaScript. Write less doesn’t mean use less”. Let me explain it a little detail. Unlike other Programming languages, JavaScript is not a compiled language hence it is very important how much code
Key features of the book The best way to learn MVC is by doing a project. In this book I have taken a simple employee screen and then went step by step achieving the same. 37 hands on lab step by step explained in a detailed manner. When it comes to developing MVC application, jQuery
In this Object Oriented world, learning SOLID principles had become one of the most interesting thing. Today’s topic is somewhat related to SOLID. If you are new to SOLID, then SOLID is an object oriented principle which will guarantee that our software module won’t break with change requirement of a software. Confused!!! Let’s make it
People usually get scared and confused when they hear the word View Model in MVC. View Model is a hidden layer in ASP.NET MVC applications. View Model is not a part of MVC. It’s something brought up by community for maintaining SOC. SOC –Separation of concerns – It means everyone will do only that which
In this article we have explained Why Microsoft has partial classes and Java does not have it and how new era of RAD (Rapid application development) and visual programming started. The secret success(it’s not a secret anymore)of Microsoft was GUI (Graphical User interfaces). In case you are an old guy like me you would remember
What is TempData? Tempdata let us maintain data within single request cycle Example: publicActionResult M1() { TempData[“a”] = “Value”; string s = TempData[“a”].ToString(); returnRedirectToAction(“M2”); } publicActionResult M2() { string s = TempData[“a”].ToString(); // Data will be available returnRedirectToAction(“M3”); } publicActionResult M3() { string s = TempData[“a”].ToString(); // Data will be available returnview (“Some View”); //