TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Junaid Syed
NA
485
130.5k
how to bind Data to HTML control in angularjs with routing.
Sep 6 2017 3:19 AM
Here my MVC controller
public
ActionResult Index()
{
return
View();
}
public
ActionResult home()
{
return
PartialView();
}
And related view is like this
<!DOCTYPE html>
<html >
<head>
<meta name=
"viewport"
content=
"width=device-width"
/>
<title>Index</title>
<script src=
"~/Scripts/angular.min.js"
></script>
<script src=
"~/Scripts/angular-route.min.js"
></script>
<script src=
"~/Scripts/scripts.js"
></script>
</head>
<body data-ng-app=
"myApp"
>
<div>
<div>
<h1>Main Page</h1>
<
base
href=
"/"
/>
<a href=
"home"
>home</a>
</div>
<div ng-view></div>
</div>
</body>
</html>
And my script or angular controller is something like this..
var
app = angular.module(
"myApp"
, [
"ngRoute"
])
app.config([
"$routeProvider"
,
"$locationProvider"
,
function
($routeProvider, $locationProvider) {
$routeProvider.when(
'/home'
, {
templateUrl:
'Home/home'
,
controller:
'homecontroller'
})
.controller(
"homecontroller"
,
function
($scope, $location) {
$scope.message =
"home controller"
;
$scope.Name =
"Junaid"
;
})
In above code iam trying to bind $scope.Name into my html control in home page.And home page is partial page in mvc something like this....
@{
Layout =
null
;
}
<h1>{{message}}</h1>
<input type=
"text"
ng-model=
"Name"
/>
<h1>home page</h1>
If Iam wrong please correct me.Thnak you...
Reply
Answers (
3
)
Sum of all the column in angularjs
Convert HTML to PDF using angularjs