Click here to Skip to main content
15,893,487 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
.aspx page code is=>

XML
<tr>
                  <td width="790px" colspan="2" align="center">
                      <fieldset>
                          <legend>Children below 6 month age</legend>
                          <asp:UpdatePanel ID="UpdatePanel9" runat="server">
                              <ContentTemplate>
                                  <table align="center" border="0">
                                      <tr>
                                          <td align="center" style="font-size:13px; background-color:#2a4866;font-family: arial;color: #FFFFFF; font-weight:bold ">
                                              Select Financial Year:
                                          </td>
                                          <td align="center">
                                              <asp:DropDownList ID="ddlFinaYrAdmtCrtBlw" runat="server" AutoPostBack="true" OnSelectedIndexChanged="ddlFinaYrAdmtCrtBlw_OnSelectedIndexChanged">
                                              </asp:DropDownList>
                                          </td>
                                      </tr>
                                  </table>
                                  <asp:Label ID="lblAdmissionNRCBelow" runat="server"></asp:Label>
                              </ContentTemplate>
                          </asp:UpdatePanel>
                      </fieldset>
                  </td>
              </tr>
              <tr>


and code behind =>

lblAdmissionNRCBelow.Text = "<img border='0' usemap='#imgMap9' src='pieChartServer.aspx?Legends=(" + strHeading + ")&Vals=(" + strValues +
")&Expload=(" + strExpload +
")&fontface=" + "verdana" +
"&fontsize=" + "8" +
"&LS=" + "10" +
"&RS=" + "10" +
"&TS=" + "10" +
"&BS=" + "10" +
"&pieRatio=" + "70" +
"&bar3dratio=" + "8" +
"&EoffSet=" + "35" +
"&imgFormat=" + 0 +
"&pieDia=" + 200 + "'>";
Response.Write(mychartdata.getImageMap("imgMap9"));
Posted

1 solution

set a trigger between
</ContentTemplate>
                         </asp:UpdatePanel>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900