Reputation: 3615
I was recently asked to create a web page using a static website generator, like Jekyll. My question is this:
I'm a .net guy, so I would like to be able to create this in visual studio, if possible.
Upvotes: 6
Views: 2672
Reputation: 237
With ASP.NET pages exist throughout the life cycle of the page, and able to work with request and session context. See this article asp.net page life cycle HTML pages are static and you can not access any variable that is on the server.
I recommend you follow the step by step this link to go to just understand how to develop ASP.NET http://www.asp.net/get-started
I hope that helped
Vicente
Upvotes: 0
Reputation: 18979
Here are some advantages and disadvantages that came to my mind:
Advantages
Disadvantages
If you know your current toolkit well and you do not have a problem hosting another ASP.net project on your server, I do not see the need for you to introduce another tool in your tool chain.
If you want to do something, where users can generate content - like github does on the github pages - this is something you might consider.
As for Jekyll, we tried it on one project and being devs, who like to code, we ran into it's limitations quite early. You can work around this, but if you know a programming language you will be faster. It was still fascinating, how far we were able to go with just using Jekyll
Upvotes: 6