Locked AJAX profiling in VS2010

  • jeudi 15 septembre 2011 13:25
     
      A du code

    Hi All,

    I want to use profiling option provided by VS2010. I am working in VS2010 Premium and want to do profiling for a web page, which contains some AJAX code. Code is as below:

    <asp:ScriptManager ID="ScriptManager1" runat="server" />
            <asp:UpdatePanel runat="server" id="UpdatePanel" updatemode="Conditional">
            <Triggers>
                <asp:AsyncPostBackTrigger controlid="UpdateButton2" eventname="Click" />
            </Triggers>
                <ContentTemplate>
                    <asp:Label runat="server" id="DateTimeLabel1" />
                    <asp:Button runat="server" id="UpdateButton1" onclick="UpdateButton_Click" text="Update" />               
                </ContentTemplate>
            </asp:UpdatePanel>
            <asp:UpdatePanel runat="server" id="UpdatePanel1" updatemode="Conditional">           
                <ContentTemplate>
                    <asp:Label runat="server" id="DateTimeLabel2" />
                    <asp:Button runat="server" id="UpdateButton2" onclick="UpdateButton_Click" text="Update" />
                </ContentTemplate>
            </asp:UpdatePanel>
    


    I select Instrumentation mode along with Javascript option for profiling purpose. The profiling report is generated. As I am new to AJAX, I am not able to understand report generated for this AJAX calls.

    Can some one please let me know, how can I do AJAX profiling in VS2010?

    Thanks,

    TA
    • Modifié TAdhav jeudi 15 septembre 2011 13:26
    •  

Toutes les réponses

  • lundi 19 septembre 2011 09:01
    Modérateur
     
     
    You may want to try Microsoft Visual Studio AJAX Profiling Extensions, hope it can helps.
    Eric Yang [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • vendredi 23 septembre 2011 08:57
     
     

    Hi Eryang,

    Yeah, I want the same. However I don't have machine setup specified in that tool.  I read in some blog, saying VS2010 profiling tool can be used for AJAX profiling.

    Can't we use VS2010 as an option for the same or can we have "Microsoft Visual Studio AJAX Profiling Extensions" for VS2010, as it is being supported only for " Service Pack 1 for Visual Studio Team System 2008"?

    Please give me some guidline about this.

    Thanks,

    Tanuja