user2063541
user2063541

Reputation: 1

asp.net application to html5/css3

I have an asp.net application made in VisualStudio2008 and I want to have a similar kind of application for mobile users and I want to use HTML5 and css3 for that but I dont know how to deal with code-behind part can anyone help?

Upvotes: 0

Views: 210

Answers (4)

seangates
seangates

Reputation: 1522

Use Twitter Bootstrap http://twitter.github.com/bootstrap/. It really is the best option and will make creating a responsive mobile and desktop site a breeze.

Upvotes: 0

user1968030
user1968030

Reputation:

You can use jquery mobile for your project this is article maybe help you.

Upvotes: 0

Ron L
Ron L

Reputation: 45

You might want to look into something like Nustache (Mustache for .NET).

A better option would be to reproach your front-end markup so that it's responsive. A great option would be to use something like Twitter Bootstrap or Zurb's Foundation framework.

Upvotes: 0

Habib
Habib

Reputation: 223422

You can expose the logic/code in code behind through web services,(better if they are RESTful), and then consume those services through your client side code (jQuery)

Upvotes: 1

Related Questions