Friday 29 May 2015

JQuery





Jquery Programming using JQuery-UI Sorting function

<html>
<head>
<script src="jquery-1.7.1.min.js"></script>
<script src="jquery-ui.js"></script>
<script src="jquery-ui.css" rel="stylesheet"></script>
<script>
$(document).ready(function()  
{
$("#list1").sortable();
 });
</script>
<style>
 ul
{
list-style:none;
width:110px;
border:8px solid red;
height:100px;
padding:5px;
}
ul li
{
float:left;
width:20px;
height:20px;
border:2px solid blue;
margin:5px;
background-color:blue;
color:white;
text-align:center;
border-radius:15px;cursor:pointer;
}
</style>
</head>
<body>
<h>Jquery Programming using JQuery-UI Sorting function</h1>
<hr/>
<ul id="list1">                                              
<li>9</li>
<li>7</li>
<li>6</li>
<li>5</li>
<li>2</li>
<li>8</li>
<li>1</li>
<li>3</li>
<li>4</li>
</ul>
</body>
</html>


Thursday 21 May 2015

ASP.NET 5/ MVC 6




MVC6 is part of ASP.NET 5, which is the next version of ASP.Net     (ASP.NET vNext).



1. ASP.NET 5 applications can run on Windows, OSX, and Linux.

2.  Asp.Net  Web forms is not a part of ASP.NET 5. We can continue to build Web Forms apps in Visual Studio 2015 by targeting the .NET 4.6 framework. However, Web Forms apps cannot  take advantage of any of the new features of ASP.NET5

3. ASP.NET 5 only supports C#  and there is no Visual Basic .

4. We have Tag Helpers instead of HTML Helpers in MCV6.

5. Instead of  Html.Action() helper, MVC6 Includes an alternative technology called View Components.

6. In MVC 6, WEB API is merged with MVC. This means we will now have one set of controller class, one set of attributes, model binders etc Microsoft.Asp.Net.Mvc.Controller is the base class.

   MVC 6 = ASP.NET MVC + WEB API

7.  Built -in support for Dependency Injection.

8. VS 2015 includes templates for creating AngularJS modules, controllers, directives, and factories. We can interact with an MVC 6 controller from an AngularJS $resource using REST.


Saturday 16 May 2015

Home

Blog
WELCOME  TO
Narasimha Techie
https://www.facebook.com/groups/ dotnetnarasimha/

Teacher's Day Celebrations - Sep 5th, 2018.

Let us try something here with our knowledge to  explore the TECHNOLOGY in a broader manner  with Practical Innovation and Real- Time Scenario. 

BatchInfo

NewBatches:



2018 Batches

Mr. NARASIMHA RAO a leading Microsoft Dotnet Professional.

His unique feature is that he teaches ASP.NET MVC with the combination of HTML/CSS and JQUERY which we will know the value when we are working in Real Time Scenario.

 He is a Real Time Expert in Microsoft .NET Technologies. His teaching is different because he uses different teaching techniques to make the student understand.
 He makes Subject simple and easy. His examples are very much close to the Real Time Scenario.

Regarding subject and clarifying doubts (during class, after class, through mails and on Facebook) he is the Most RESPONSIVE FACULTY .



SATHYA Technologies

2nd Floor, Sri Sai Arcade,
Beside Aditya Trade Centre, Ameerpet,
Hyderabad- Telengana State, PIN-500 038. INDIA
IND:

+91 9100920092 , +91 9100940094

























































  




























Friday 15 May 2015

JQuery with HTML/CSS

JQuery
  • JQuery is a JavaScript library or JavaScript Framework developed by using JavaScript.
  • JQuery is not replacement of JavaScript, but it will makes JavaScript programming MORE EASIER.
  • It is used to perform all client side programming.
  • It is a LightWeight JavaScript library.
  • It is an open source library which can be used in any website development.

       The speciality of Jquery is "Write Less, Do More".

HTML5/CSS3


Html5 /CSS3  plays an important role in ASP.NET MVC.

Designing is easy in ASP.NET as we have Server Side Controls, but in ASP.NET MVC designing is little bit pain because we don't have Server Side controls.

The Html5 /CSS3 and Bootstrap is responsible for the UI, but the functionality 
 depends on JQuery.
CSS
  • CSS stands for Cascading Style Sheets.
  • It is used to describe the LOOK and FORMAT of a HTML DOCUMENT.
Why CSS ?
  • Most of the HTML tags doesn't provide attribute for changing default behaviour like background color, text color, font etc.
  • In order to override/ change the default behaviour, we use CSS concept.




ASP.NET v/s ASP.NET MVC

Differences between ASP.NET and ASP.NET MVC

 First Question when you are attending Interview on ASP.NET MVC


ASP.NET ASP.NET MVC
It uses page controller design pattern Asp.Net MVC itself is a design pattern
It uses file based URLS http://Sitename/Default.aspx It uses Controller based URLS http://Sitename/Home/Index
It uses Server Side Controls It uses HTML controls and HTML Helper Controls
It uses Viewstate concept to maintain the state of the server controls No viewstate
It works based on event modelling system It doesn't support events (server side) concepts
It uses Master pages page concept to develop page templates Layout views are used for designing web pages
It supports WebUser controls to implement Re-usable content Partial views are used to prepare Re-usable content
In Asp.Net, UI logic is strongly dependent on business logic UI logic is loosly dependent on business logic
It is not an Open source It is an Open source framework
Asp.Net is suitable when we want to develop Rapid Application  Development (RAD) MVC is suitable when we want to develop the applications which is required more no. of UI changes.

INTRODUCTION TO ASP.NET MVC


MVC

1. MVC stands for Model View Controller.
2. MVC is a design pattern which are used to develop the applications.

Design Pattern

1. Design pattern is a pre-defined solution for the problems that occurs in software development.
2. These design pattern can be used in any application development based on the requirement.

Some of the important categories of Design Pattern

1. Architectural Design Pattern
2. Behavioural Design Pattern
3. Conceptual Design Pattern
4. Structural Design Pattern

MVC Design Pattern comes under Architectural Design Pattern.

WHY MVC?

1. MVC Design Pattern provides the solution for the applications that are using GUI programming.
2. In MVC, there is a separation of code. UI logic is separated from the business/database logic.
3. Due to this we can reduce the dependency or complexities of GUI logic on other parts of the           application.
4. Easy to perform modifications since application is divided into different modules.

Note: MVC Design Pattern is suitable if the application requires more GUI modifications frequently.

MODULES IN MVC


1. MODEL
  • It is responsible for database related logic.
  • Model will communicate with database and sends the result to controller.
2. VIEW
  • It is responsible for GUI related logic.
  • It will focus how the data will present to the end user.
3.CONTROLLER
  • Controller is responsible for complete execution flow of the application.
  • It will communicate with models and also with views

ASP.NET MVC

  • ASP.NET MVC is an open source framework.
  • Microsoft was introduced MVC Design Pattern with ASP.NET in 2007.
  • Using ASP.NET MVC, we can develop Web Applcations with MVC Design pattern.

Thursday 14 May 2015

AboutBlog


"DOTNET NARASIMHA"  BLOG is dedicated to my FACULTY Mr.NARASIMHA RAO (The Man of Simplicity).
 
DOTNET Developer Ideas BLOG is about Microsoft .NET Technologies.
It provides a platform for DOTNET Developers to interact about Technology and its usage. 

The main objective of this Blog is to explore the TECHNOLOGY in a broader manner with Practical Innovation and Real- Time Scenario.

This Blog is meant for the expression of the views on the technologies and posting them.

As a beginner, we have  developed this Blog  to share our knowledge.

 We welcome any suggestions from you all for further improving the functionality  of this Blog so that it can better serve our future needs.


developer.ideas18@gmail.com


                                                                                  - You are our INSPIRATION SIR
                                                                                               




Thanks
Your Students