Lifestyle & Education Tips
Thursday, March 3, 2016
FamilyTree Application Using asp.net (MVC5)
Easiest way to design a simple application to learn - MVC5
Step:1
The execution goes to the global.asax page, invokes all the class files in the app_start folders where all the files are static.
Step:2
The route.config file gets invoked and the path is decided, the default name of each routes defined should be different.
routes.MapRoute(
name: "Default1",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Authenticate", action = "SignIn", id = UrlParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Family", action = "Index", id = UrlParameter.Optional }
).DataTokens = new RouteValueDictionary(new { area = "FamilyTree" });
The first route invokes the signIn action specified in the Authentication controller.
The second route specifies the Index action in Family controller where the controller is present inside the area.
Step:3 (Performing SignIn Authenticate the User custom)
Step:1
The execution goes to the global.asax page, invokes all the class files in the app_start folders where all the files are static.
Step:2
The route.config file gets invoked and the path is decided, the default name of each routes defined should be different.
routes.MapRoute(
name: "Default1",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Authenticate", action = "SignIn", id = UrlParameter.Optional }
);
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Family", action = "Index", id = UrlParameter.Optional }
).DataTokens = new RouteValueDictionary(new { area = "FamilyTree" });
The first route invokes the signIn action specified in the Authentication controller.
The second route specifies the Index action in Family controller where the controller is present inside the area.
Step:3 (Performing SignIn Authenticate the User custom)
Monday, February 29, 2016
Dress like a kid to look Younger
As a matter of fact, if you like tech doesn't mean you have
to dress like a nerd from a 1970s movie. I will suggest to find out how we can dress
like a kid to improve our fashion sense & youth look.
How can someone pick
cool dresses to improve their fashion look?
The most obvious way to do that would be via the internet.
You've got lots of sites at your fingertips that are willing to give you advice
on what to wear, how to wear it, etc. But the Internet's style advice is only good
to read but it is not as easy to apply in our real life.
The other thing you could do is find a famous person whose
dress as you like and then just copy it. Use Google to find as many pictures of
them as possible, see if you can find out what they're wearing.
Is there any app to
improve our fashion look?
We are currently working on a fashion app which could
actively suggest nice & cool fashion wearables. It has videos and advice
from Dens on how to dress for occasions, finding a style that's right for you
and where to shop.
Immediately you'll be more stylish. Women will smile at you
in the street, men will ask where you get your suits made and you'll almost
certainly get promoted.
Subscribe to:
Posts (Atom)