Migration of a flex application into HTML5
-
Saturday, March 31, 2012 7:59 PMHi,
I'm working in a company, my client have an application which is built over the flex and .Net technologies. User are facing the performance related issues because low speed of internet. Due to this client has decided to convert this application into the HTML5.
I've just listen about this technologies and have not idea how can I migrate this application into HTML5. There are a few questions for which I did a lot of googling but not succedd. Any help on this will be appreciated.
1. We can call .net code in flex through the flex Flourine service. How it is possible into HTML5.
2. How can I invoke a flex pages from HTML5 and vice vesra.
3. Is it possible to create the hybrid version of this application. Because application contains many page, whole migration will take a lot of time. I want running developed HTML5 pages with Flex application.
Thanks for your help
Best Regards,
Amit
All Replies
-
Saturday, March 31, 2012 9:11 PM
What is Flex
Flex is a powerful application framework that allows developers to easily build mobile applications for iOS, Android, and BlackBerry Tablet OS, as well as traditional applications for the browser and the desktop using the same programming model, the same tool, and the same code base.
the equivalent tool in Visual Studio 2010 is MVC project types. your will find the MVC forums here http://forums.asp.net/1146.aspx/1?MVC
for an outline in developing html5 web applications see http://msdn.microsoft.com/en-us/magazine/hh335062.aspx
Rob^_^
- Proposed As Answer by doctoroftypeMVP Saturday, March 31, 2012 9:11 PM
- Unproposed As Answer by aksaxena4 Sunday, April 01, 2012 6:35 AM
-
Sunday, April 01, 2012 2:08 PM
Hi, given article not solve my problem. My main concern is about how to call .Net code in HTML5.
Regards,
Amitamit
-
Sunday, April 01, 2012 7:48 PM
start reading, requirements gathering
<%@ Master Language="VB" EnableTheming="false" %> <%@ Register Assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI" TagPrefix="asp" %> <%@ Register Src="~/controls/ctlPaperFooter.ascx" TagName="ctlPaperFooter" TagPrefix="uc2" %> <%@ Register Src="~/controls/ctlPageTools.ascx" TagName="ctlPageTools" TagPrefix="uc3" %> <%@ Register Src="~/controls/ctlAdsenseLetterBox.ascx" TagName="ctlAdsenseLetterBox" TagPrefix="uc4" %> <%@ Register Src="~/controls/ctlLoginLinks.ascx" TagName="ctlLoginLinks" TagPrefix="uc5" %> <%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> <%@ Import Namespace="DBAccess" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.SqlClient" %> <%@ Register src="Controls/ctlUsersCurrent.ascx" tagname="ctlUsersCurrent" tagprefix="uc1" %> <!DOCTYPE html> <html id="oHtml" lang="en" dir="ltr" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > <head runat="server">
Rob^_^
- Proposed As Answer by Kim ZhouModerator Friday, April 13, 2012 5:35 AM
- Marked As Answer by Alex ZhaozxMicrosoft Contingent Staff, Moderator Friday, April 13, 2012 6:16 AM

