asp.net application to html5/css3 - asp.net

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?

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)

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.

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

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.

Related

How to make emberjs app with a mobile look (like the one in jquery mobile)?

I have a simple project of a web application for mobile using Emberjs. For the look and feel, I want something equivalent to JQuery Mobile. Is there a way to mix Emberjs and jquery mobile? If so, how?
I have looked at the Travis-ci mobile app and they seem to have only defined a specific css for the mobile version. What is strange is that they also have this file : file that seems to be an attempt to integrate with JQMobile but they don't use it anywhere in the code.
I also have found this article Using Ember.js with jQuery UI but it's about JQuery UI. Can I use the same technique for JQuery Mobile?
Please share your own experience about having a mobile look and feel with Emberjs.
If you know any open source project on GitHub or wherever that uses Emberjs for mobile I will be thankful if you let me know the address.
What Technique do you recommend?
Note: I have make a first attempt to use the 'data-' html5 attributes of jquery mobile within a list generated by a controller but the elements of the view don't have change to a jquery mobile look and feel and I not sure why.
Sorry for my English, it is not my mother tongue.
As stated in the Ember.js wiki there are two projects concerning mobile:
ember-titanium - Titanium Mobile wrapped in Ember (formerly SproutCore-Titanium)
ember-mk - Mobile Kit for ember.js
Maybe they are useful for you.
#luissala created a proof of concept project using Ember with jQuery Mobile. It might get you on the right track:
https://github.com/LuisSala/emberjs-jqm
Have a look at Twitter Bootstrap: http://twitter.github.com/bootstrap/
https://github.com/fohr/blossom
Is in a very premature state, but it seems pretty promising.
It's from the guys who started Sproutcore (I think!), so the syntax is very relevant to EmberJS

Webform generator?

just wondering is there any free tool which can aid in making the GUI/interface layout of asp.net/html forms ? My forms mostly end up in being less user friendly and not good looking at all.
I have been using Bootstrap framework to get my design up to speed in no time. You can use this tool to get forms created in minutes. http://bootsnipp.com/forms?version=3
Why don't you try downloading the Firefox Web Developer Toolbar and use it to reverse-engineer some simple, good looking sites that you come across?
https://addons.mozilla.org/en-US/firefox/addon/61772/
You can use it to grab the entire CSS of any site, or hover over areas of a page and see the various divs and their associated CSS rules highlighted.

how to implement photo gallary with slide show

I am developing a web application, I need a modern photo gallary using ajax or jQuery.
With jquery you will have many options. But what i like the most is Galleriffic becuase it is customizable and quite trendy:
http://www.twospy.com/galleriffic/example-2.html
Regards.
use plugin
http://blarnee.com/wp/jquery-image-carousels-for-slidehow/
http://plugins.jquery.com/project/carousel3d

Image gallery for ASP.NET

Does anyone have a suggestions for a superb cool image gallery that I can use for a website I am creating?
I'm assuming that by "superb cool" you're going to want a slick, "web 2", responsive client-side interface.
I would suggest you use a javascript library such as jQuery, and look for an image gallery plugin for it. There are a ton of them out there, for example: http://speckyboy.com/2009/06/03/15-amazing-jquery-image-galleryslideshow-plugins-and-tutorials/
You might look at the silverlight examples at http://www.silverlight.net/community/samples/silverlight-samples/
http://cutesoft.net/ASP.NET+Image+Gallery/
We use this one. You can modify many functions by changing the js, css and template files.
Gallery Server Pro is an ASP.NET open source digital asset management and web gallery application. It is built as a single user control you can drop into your existing application.
Disclaimer: I am its creator and lead developer.
To display they nicely on the page you can use jQuery FancyBox.
http://fancybox.net/home

Can I use jQuery with my ASP.net website/project?

I want to make my website look spiffy. Should I use jQuery, or what is better suited to be paired with ASP.net?
jQuery works very well with .NET.
I would highly recommend jQuery UI.
http://jqueryui.com/
JQuery compliments .NET quite nicely. Here is a good blog article that should get you started.
I've can say this with confidence - you can use jQuery with .NET with no issues. I do this all the time.
Absolutely. I don't know that it will necessarily make it spiffy as you asked, but it'll certainly ease your programming work.
AJAX will help with the "spiffiness".
You want really spiffy? Look at Silverlight!
Yes, you can definitely use JQuery for ASP.NET apps. Check out an introductory article on how to get started - Getting Started with JQuery
jQuery works as well with ASP.NET as with any other server platform, because it's just a set of client-side scripts. When you consider its daily usage (such as assigning Thread.CurrentThread.CurrentCulture.DateTimeFormat to jQuery calendar) the final code won't look as short and elegant as advertised. The server controls of ASP.NET AJAX have their own bonuses. In short: if you use ASP.NET and not going to change the platform try standard ASP.NET AJAX facility (possibly with AJAX Control Toolkit). Otherwise starting with jQuery can be much better investment.

Resources