[CLOSED] Slow Conversion from ASP

  1. #1

    [CLOSED] Slow Conversion from ASP

    We have created several new web applications using Ext.NET, but now it is time to port an existing website. I have been converting areas of an existing website with great success. Because of some lower level changes I need to make a minor change to our front page, prior to a complete overhaul.

    To begin testing I add a LinkButton and a simpe Direct Event to our frontpage:

    <script runat="server">
    
       protected void CrtsDataRequest(object sender, DirectEventArgs e)
       {
          X.Msg.Alert("CRTS Data Request", DateTime.Now.ToString()).Show();
       }
    </script>
    
       ...
    
    <ext:LinkButton runat="server" Text="Submit a Data Request (Ext)" onDirectClick="CrtsDataRequest" />
    But obviously I had to also add ext:ResourceManager to the front page. Once I did that all of our styles got clobbered. So I added the attribute RenderStyle="None". Now our website home page looks fine, but when I click the ext LinkButton the message Alert style is clobbered.

    Is there anyway to make everythin happy while I am slowly converting?
    Last edited by Daniil; Oct 11, 2012 at 11:45 AM. Reason: [CLOSED]
  2. #2
    Hi Chris,

    Here is an answer why it happens.
    http://forums.ext.net/showthread.php...ll=1#post57861

    A possible solution is to move all old ASP content into Content of an <ext:Container> with
    StyleHtmlContent="true
    http://docs.sencha.com/ext-js/4-1/#!...yleHtmlContent

    I think it should work.
  3. #3
    Got it. I will work through my front page and apply the suggestion. Please close this thread.

Similar Threads

  1. [FIXED] Bug on Enum conversion
    By JCKodel in forum Bugs
    Replies: 1
    Last Post: Nov 27, 2012, 7:04 AM
  2. How to cet conversion on Ext.data.Field
    By PetrSnobelt in forum 2.x Help
    Replies: 1
    Last Post: Oct 26, 2012, 1:36 PM
  3. DateTime conversion error
    By HexElffilter in forum 1.x Help
    Replies: 6
    Last Post: Feb 21, 2012, 11:29 AM
  4. [CLOSED] TimeField Conversion
    By capecod in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Oct 25, 2010, 9:19 AM
  5. [CLOSED] JSON conversion
    By Lex in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Sep 22, 2008, 4:06 AM

Posting Permissions