473,657 Members | 2,690 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Ajax Modal Popup Extender And gridview

malav123
217 New Member
Hi,
I am using Ajax's modal popup extender to display the information about all the rows of gridview but the problem is when page loads, modal popup extender loads for all the rows... but i want to implement the same as when i request for particular row at that time modal popup should be load.... because it's take so much execution time when the page loads... so is there any solution of my problem ??? I am waiting for Reply...

thanks in advance.....


-malav.
May 19 '08 #1
16 11089
acoder
16,027 Recognized Expert Moderator MVP
Post what code you have so far.
May 20 '08 #2
malav123
217 New Member
Post what code you have so far.

Means which code you want to see ? code of design or coding ???
May 20 '08 #3
acoder
16,027 Recognized Expert Moderator MVP
The code for the modal popup extender. When you say that you want it to load when you request a particular row, would that be triggered by a button click?
May 20 '08 #4
malav123
217 New Member
The following code contains all the things for modal popup extender....

Expand|Select|Wrap|Line Numbers
  1. <asp:TemplateField>
  2.                                         <ItemTemplate>
  3.                                             <asp:ImageButton ID="imgGrid" runat="server" ImageUrl="~/images/info1.gif" />
  4.                                             <asp:Panel ID="Panel1" runat="server" CssClass="modalPopup">
  5.                                                 <div style="text-align: left; vertical-align: middle">
  6.                                                     <table class="modalPopup" width="600px" align="center">
  7.                                                         <tr>
  8.                                                             <td align="right" colspan="2">
  9.                                                                 <asp:ImageButton ID="imgCancel" runat="Server" ToolTip="Close" Height="15px" ImageUrl="~/images/close_vista.gif" /></td>
  10.                                                         </tr>
  11.                                                         <tr>
  12.                                                             <td>
  13.                                                                 <fieldset style="height: 100px; width: 290px">
  14.                                                                     <legend style="font-size: 15px">Borrower Details</legend>
  15.                                                                     <table width="100%">
  16.                                                                         <tr>
  17.                                                                             <td width="60%">
  18.                                                                                 <asp:Label ID="lblmodalname" runat="Server" Font-Bold="true" Text="Borrower Name:"></asp:Label></td>
  19.                                                                             <td width="40%">
  20.                                                                                 <asp:Label ID="lblmodalnameval" runat="server" Text="Borrower"></asp:Label></td>
  21.                                                                         </tr>
  22.                                                                         <tr>
  23.                                                                             <td>
  24.                                                                                 <asp:Label ID="lblWorkph" runat="Server" Font-Bold="True" Text="Work Phone:"></asp:Label></td>
  25.                                                                             <td>
  26.                                                                                 <asp:Label ID="lblWorkphval" runat="server" Text="12345"></asp:Label></td>
  27.                                                                         </tr>
  28.                                                                         <tr>
  29.                                                                             <td>
  30.                                                                                 <asp:Label ID="lblmodalEmail" runat="Server" Font-Bold="True" Text="E-Mail:"></asp:Label></td>
  31.                                                                             <td>
  32.                                                                                 <asp:Label ID="lblmodalEmailval" runat="server" Text="marc@yahoo.com"></asp:Label></td>
  33.                                                                         </tr>
  34.                                                                         <tr>
  35.                                                                             <td>
  36.                                                                                 <asp:Label ID="lblmodalcity" runat="Server" Font-Bold="True" Text="City:"></asp:Label></td>
  37.                                                                             <td>
  38.                                                                                 <asp:Label ID="lblmodalcityval" runat="server" Text="rajkot"></asp:Label></td>
  39.                                                                         </tr>
  40.                                                                         <tr>
  41.                                                                             <td>
  42.                                                                                 <asp:Label ID="lblstate" runat="Server" Font-Bold="True" Text="State:"></asp:Label></td>
  43.                                                                             <td>
  44.                                                                                 <asp:Label ID="lblstateval" runat="server" Text="Gujarat"></asp:Label></td>
  45.                                                                         </tr>
  46.                                                                     </table>
  47.                                                                 </fieldset>
  48.                                                             </td>
  49.                                                             <td rowspan="2">
  50.                                                                 <fieldset style="height: 200px; width: 240px">
  51.                                                                     <legend style="font-size: 15px">Info</legend>
  52.                                                                     <table width="100%">
  53.                                                                         <tr>
  54.                                                                             <td width="30%">
  55.                                                                                 <asp:Label ID="lblleadStatus" runat="Server" Font-Bold="True" Text="Status:"></asp:Label></td>
  56.                                                                             <td width="10%">
  57.                                                                                 <asp:Label ID="lblleadstatusval" runat="Server" Text="Credit"></asp:Label></td>
  58.                                                                         </tr>
  59.                                                                         <tr>
  60.                                                                             <td>
  61.                                                                                 <asp:Label ID="lblleadloanref" runat="Server" Font-Bold="True" Text="Lead Referal:"></asp:Label></td>
  62.                                                                             <td>
  63.                                                                                 <asp:Label ID="lblleadloanrefval" runat="Server" Text="New"></asp:Label></td>
  64.                                                                         </tr>
  65.                                                                         <tr>
  66.                                                                             <td>
  67.                                                                                 <asp:Label ID="lblleadowner" runat="Server" Font-Bold="True" Text="Lead Owner:"></asp:Label></td>
  68.                                                                             <td>
  69.                                                                                 <asp:Label ID="lblleadownerval" runat="Server" Text="Marc"></asp:Label></td>
  70.                                                                         </tr>
  71.                                                                         <tr>
  72.                                                                             <td>
  73.                                                                                 <asp:Label ID="lblleadCE" runat="Server" Font-Bold="True" Text="CE:"></asp:Label></td>
  74.                                                                             <td>
  75.                                                                                 <asp:Label ID="lblleadCEval" runat="Server" Text="XYZ"></asp:Label></td>
  76.                                                                         </tr>
  77.                                                                         <tr>
  78.                                                                             <td colspan="2">
  79.                                                                                 <br />
  80.                                                                             </td>
  81.                                                                         </tr>
Expand|Select|Wrap|Line Numbers
  1.                                                                         <tr>
  2.                                                                             <td>
  3.                                                                                 <asp:Label ID="lblLCR" runat="Server" Font-Bold="True" Text="Last Credit Report:"></asp:Label></td>
  4.                                                                             <td>
  5.                                                                                 <asp:Label ID="lblLCRval" runat="Server" Text="12/12/2007"></asp:Label></td>
  6.                                                                         </tr>
  7.                                                                         <tr>
  8.                                                                             <td>
  9.                                                                                 <asp:Label ID="lblLT" runat="Server" Font-Bold="True" Text="Last Title:"></asp:Label></td>
  10.                                                                             <td>
  11.                                                                                 <asp:Label ID="lblLTval" runat="Server" Text="01/12/2007"></asp:Label></td>
  12.                                                                         </tr>
  13.                                                                         <tr>
  14.                                                                             <td>
  15.                                                                                 <asp:Label ID="lblLP" runat="Server" Font-Bold="True" Text="Last Prequal:"></asp:Label></td>
  16.                                                                             <td>
  17.                                                                                 <asp:Label ID="lblLPval" runat="Server" Text="12/10/2007"></asp:Label></td>
  18.                                                                         </tr>
  19.                                                                         <tr>
  20.                                                                             <td>
  21.                                                                                 <asp:Label ID="lblpriceengine" runat="Server" Font-Bold="True" Text="Price Engine:"></asp:Label></td>
  22.                                                                             <td>
  23.                                                                                 <asp:Label ID="lblpriceengineval" runat="Server" Text="High"></asp:Label></td>
  24.                                                                         </tr>
  25.                                                                     </table>
  26.                                                                 </fieldset>
  27.                                                             </td>
  28.                                                         </tr>
  29.                                                         <tr>
  30.                                                             <td>
  31.                                                                 <fieldset style="height: 80px; width: 290px">
  32.                                                                     <legend style="font-size: 15px">Loan Details</legend>
  33.                                                                     <table width="100%">
  34.                                                                         <tr>
  35.                                                                             <td width="60%">
  36.                                                                                 <asp:Label ID="lblleadpp" runat="Server" Font-Bold="True" Text="Purchase Price:"></asp:Label></td>
  37.                                                                             <td width="40%">
  38.                                                                                 <asp:Label ID="lbllealppval" runat="Server" Text="12,500"></asp:Label></td>
  39.                                                                         </tr>
  40.                                                                         <tr>
  41.                                                                             <td>
  42.                                                                                 <asp:Label ID="lblleadloan" runat="Server" Font-Bold="True" Text="Loan Amount:"></asp:Label></td>
  43.                                                                             <td>
  44.                                                                                 <asp:Label ID="lblleadloanval" runat="Server" Text="1,12,500"></asp:Label></td>
  45.                                                                         </tr>
  46.                                                                         <tr>
  47.                                                                             <td>
  48.                                                                                 <asp:Label ID="lblleadhome" runat="Server" Font-Bold="True" Text="Value of Home:"></asp:Label></td>
  49.                                                                             <td>
  50.                                                                                 <asp:Label ID="lblleadhomeval" runat="Server" Text="8,12,500"></asp:Label></td>
  51.                                                                         </tr>
  52.                                                                         <tr>
  53.                                                                             <td>
  54.                                                                                 <asp:Label ID="lblleadproduct" runat="Server" Font-Bold="True" Text="Product:"></asp:Label></td>
  55.                                                                             <td>
  56.                                                                                 <asp:Label ID="lblleadproductval" runat="Server" Text="ABC"></asp:Label></td>
  57.                                                                         </tr>
  58.                                                                     </table>
  59.                                                                 </fieldset>
  60.                                                             </td>
  61.                                                         </tr>
  62.                                                         <tr>
  63.                                                             <td colspan="2">
  64.                                                                 <fieldset style="height: 50px; width: 590px;">
  65.                                                                     <legend style="font-size: 15px;">Comment</legend>
  66.                                                                 </fieldset>
  67.                                                                 <br />
  68.                                                             </td>
  69.                                                         </tr>
  70.                                                     </table>
  71.                                                 </div>
  72.                                             </asp:Panel>
  73.                                             <div align="center" style="vertical-align: middle">
  74.                                                 <cc1:ModalPopupExtender ID="ModalPopupExtender" runat="server" TargetControlID="imgGrid"
  75.                                                     PopupControlID="Panel1" BackgroundCssClass="modalBackground" DropShadow="true"
  76.                                                     CancelControlID="imgCancel"/>
  77.                                             </div>
  78.                                         </ItemTemplate>
  79.                                     </asp:TemplateField>
  80.  
May 21 '08 #5
malav123
217 New Member
Expand|Select|Wrap|Line Numbers
  1. <asp:TemplateField>
  2.                                         <ItemTemplate>
  3.                                             <asp:ImageButton ID="imgGrid" runat="server" ImageUrl="~/images/info1.gif" />
  4.                                             <asp:Panel ID="Panel1" runat="server" CssClass="modalPopup">
  5.                                                 <div style="text-align: left; vertical-align: middle">
  6.                                                     <table class="modalPopup" width="600px" align="center">
  7.                                                         <tr>
  8.                                                             <td align="right" colspan="2">
  9.                                                                 <asp:ImageButton ID="imgCancel" runat="Server" ToolTip="Close" Height="15px" ImageUrl="~/images/close_vista.gif" /></td>
  10.                                                         </tr>
  11.                                                         <tr>
  12.                                                             <td>
  13.                                                                 <fieldset style="height: 100px; width: 290px">
  14.                                                                     <legend style="font-size: 15px">Borrower Details</legend>
  15.                                                                     <table width="100%">
  16.                                                                         <tr>
  17.                                                                             <td width="60%">
  18.                                                                                 <asp:Label ID="lblmodalname" runat="Server" Font-Bold="true" Text="Borrower Name:"></asp:Label></td>
  19.                                                                             <td width="40%">
  20.                                                                                 <asp:Label ID="lblmodalnameval" runat="server" Text="Borrower"></asp:Label></td>
  21.                                                                         </tr>
  22.                                                                         <tr>
  23.                                                                             <td>
  24.                                                                                 <asp:Label ID="lblWorkph" runat="Server" Font-Bold="True" Text="Work Phone:"></asp:Label></td>
  25.                                                                             <td>
  26.                                                                                 <asp:Label ID="lblWorkphval" runat="server" Text="12345"></asp:Label></td>
  27.                                                                         </tr>
  28.                                                                         <tr>
  29.                                                                             <td>
  30.                                                                                 <asp:Label ID="lblmodalEmail" runat="Server" Font-Bold="True" Text="E-Mail:"></asp:Label></td>
  31.                                                                             <td>
  32.                                                                                 <asp:Label ID="lblmodalEmailval" runat="server" Text="marc@yahoo.com"></asp:Label></td>
  33.                                                                         </tr>
  34.                                                                         <tr>
  35.                                                                             <td>
  36.                                                                                 <asp:Label ID="lblmodalcity" runat="Server" Font-Bold="True" Text="City:"></asp:Label></td>
  37.                                                                             <td>
  38.                                                                                 <asp:Label ID="lblmodalcityval" runat="server" Text="rajkot"></asp:Label></td>
  39.                                                                         </tr>
  40.                                                                         <tr>
  41.                                                                             <td>
  42.                                                                                 <asp:Label ID="lblstate" runat="Server" Font-Bold="True" Text="State:"></asp:Label></td>
  43.                                                                             <td>
  44.                                                                                 <asp:Label ID="lblstateval" runat="server" Text="Gujarat"></asp:Label></td>
  45.                                                                         </tr>
  46.                                                                     </table>
  47.                                                                 </fieldset>
  48.                                                             </td>
  49.                                                             <td rowspan="2">
  50.                                                                 <fieldset style="height: 200px; width: 240px">
  51.                                                                     <legend style="font-size: 15px">Info</legend>
  52.                                                                     <table width="100%">
  53.                                                                         <tr>
  54.                                                                             <td width="30%">
  55.                                                                                 <asp:Label ID="lblleadStatus" runat="Server" Font-Bold="True" Text="Status:"></asp:Label></td>
  56.                                                                             <td width="10%">
  57.                                                                                 <asp:Label ID="lblleadstatusval" runat="Server" Text="Credit"></asp:Label></td>
  58.                                                                         </tr>
  59.                                                                         <tr>
  60.                                                                             <td>
  61.                                                                                 <asp:Label ID="lblleadloanref" runat="Server" Font-Bold="True" Text="Lead Referal:"></asp:Label></td>
  62.                                                                             <td>
  63.                                                                                 <asp:Label ID="lblleadloanrefval" runat="Server" Text="New"></asp:Label></td>
  64.                                                                         </tr>
  65.                                                                         <tr>
  66.                                                                             <td>
  67.                                                                                 <asp:Label ID="lblleadowner" runat="Server" Font-Bold="True" Text="Lead Owner:"></asp:Label></td>
  68.                                                                             <td>
  69.                                                                                 <asp:Label ID="lblleadownerval" runat="Server" Text="Marc"></asp:Label></td>
  70.                                                                         </tr>
  71.                                                                         <tr>
  72.                                                                             <td>
  73.                                                                                 <asp:Label ID="lblleadCE" runat="Server" Font-Bold="True" Text="CE:"></asp:Label></td>
  74.                                                                             <td>
  75.                                                                                 <asp:Label ID="lblleadCEval" runat="Server" Text="XYZ"></asp:Label></td>
  76.                                                                         </tr>
Expand|Select|Wrap|Line Numbers
  1.                                                                         <tr>
  2.                                                                             <td colspan="2">
  3.                                                                                 <br />
  4.                                                                             </td>
  5.                                                                         </tr>
  6.                                                                         <tr>
  7.                                                                             <td>
  8.                                                                                 <asp:Label ID="lblLCR" runat="Server" Font-Bold="True" Text="Last Credit Report:"></asp:Label></td>
  9.                                                                             <td>
  10.                                                                                 <asp:Label ID="lblLCRval" runat="Server" Text="12/12/2007"></asp:Label></td>
  11.                                                                         </tr>
  12.                                                                         <tr>
  13.                                                                             <td>
  14.                                                                                 <asp:Label ID="lblLT" runat="Server" Font-Bold="True" Text="Last Title:"></asp:Label></td>
  15.                                                                             <td>
  16.                                                                                 <asp:Label ID="lblLTval" runat="Server" Text="01/12/2007"></asp:Label></td>
  17.                                                                         </tr>
  18.                                                                         <tr>
  19.                                                                             <td>
  20.                                                                                 <asp:Label ID="lblLP" runat="Server" Font-Bold="True" Text="Last Prequal:"></asp:Label></td>
  21.                                                                             <td>
  22.                                                                                 <asp:Label ID="lblLPval" runat="Server" Text="12/10/2007"></asp:Label></td>
  23.                                                                         </tr>
  24.                                                                         <tr>
  25.                                                                             <td>
  26.                                                                                 <asp:Label ID="lblpriceengine" runat="Server" Font-Bold="True" Text="Price Engine:"></asp:Label></td>
  27.                                                                             <td>
  28.                                                                                 <asp:Label ID="lblpriceengineval" runat="Server" Text="High"></asp:Label></td>
  29.                                                                         </tr>
  30.                                                                     </table>
  31.                                                                 </fieldset>
  32.                                                             </td>
  33.                                                         </tr>
  34.                                                         <tr>
  35.                                                             <td>
  36.                                                                 <fieldset style="height: 80px; width: 290px">
  37.                                                                     <legend style="font-size: 15px">Loan Details</legend>
  38.                                                                     <table width="100%">
  39.                                                                         <tr>
  40.                                                                             <td width="60%">
  41.                                                                                 <asp:Label ID="lblleadpp" runat="Server" Font-Bold="True" Text="Purchase Price:"></asp:Label></td>
  42.                                                                             <td width="40%">
  43.                                                                                 <asp:Label ID="lbllealppval" runat="Server" Text="12,500"></asp:Label></td>
  44.                                                                         </tr>
  45.                                                                         <tr>
  46.                                                                             <td>
  47.                                                                                 <asp:Label ID="lblleadloan" runat="Server" Font-Bold="True" Text="Loan Amount:"></asp:Label></td>
  48.                                                                             <td>
  49.                                                                                 <asp:Label ID="lblleadloanval" runat="Server" Text="1,12,500"></asp:Label></td>
  50.                                                                         </tr>
  51.                                                                         <tr>
  52.                                                                             <td>
  53.                                                                                 <asp:Label ID="lblleadhome" runat="Server" Font-Bold="True" Text="Value of Home:"></asp:Label></td>
  54.                                                                             <td>
  55.                                                                                 <asp:Label ID="lblleadhomeval" runat="Server" Text="8,12,500"></asp:Label></td>
  56.                                                                         </tr>
  57.                                                                         <tr>
  58.                                                                             <td>
  59.                                                                                 <asp:Label ID="lblleadproduct" runat="Server" Font-Bold="True" Text="Product:"></asp:Label></td>
  60.                                                                             <td>
  61.                                                                                 <asp:Label ID="lblleadproductval" runat="Server" Text="ABC"></asp:Label></td>
  62.                                                                         </tr>
  63.                                                                     </table>
  64.                                                                 </fieldset>
  65.                                                             </td>
  66.                                                         </tr>
  67.                                                         <tr>
  68.                                                             <td colspan="2">
  69.                                                                 <fieldset style="height: 50px; width: 590px;">
  70.                                                                     <legend style="font-size: 15px;">Comment</legend>
  71.                                                                 </fieldset>
  72.                                                                 <br />
  73.                                                             </td>
  74.                                                         </tr>
  75.                                                     </table>
  76.                                                 </div>
  77.                                             </asp:Panel>
  78.                                             <div align="center" style="vertical-align: middle">
  79.                                                 <cc1:ModalPopupExtender ID="ModalPopupExtender" runat="server" TargetControlID="imgGrid"
  80.                                                     PopupControlID="Panel1" BackgroundCssClass="modalBackground" DropShadow="true"
  81.                                                     CancelControlID="imgCancel"/>
  82.                                             </div>
  83.                                         </ItemTemplate>
  84.                                     </asp:TemplateField>
May 21 '08 #6
acoder
16,027 Recognized Expert Moderator MVP
Could you post the client-side code instead? Where's the JavaScript code? How is it triggered? If it's too much code, post a link to a test page instead.
May 21 '08 #7
malav123
217 New Member
Could you post the client-side code instead? Where's the JavaScript code? How is it triggered? If it's too much code, post a link to a test page instead.

I am not using any javascript code for modal popup, my modal popup extender is,
Expand|Select|Wrap|Line Numbers
  1. <cc1:ModalPopupExtender ID="ModalPopupExtender" runat="server" TargetControlID="imgGrid"
  2.                                                     PopupControlID="Panel1" BackgroundCssClass="modalBackground" DropShadow="true"
  3.                                                     CancelControlID="imgCancel"/>
  4.  
modal popup triggers whenever i clicks on image button named "imgGrid" and my target pannel is "panel1" and i am getting data for panel1 is dynamic... that code i have written in "RowDataBou nd" of gridview control...
May 21 '08 #8
acoder
16,027 Recognized Expert Moderator MVP
modal popup triggers whenever i clicks on image button named "imgGrid" and my target pannel is "panel1" and i am getting data for panel1 is dynamic... that code i have written in "RowDataBou nd" of gridview control...
I'm not much of a .NET person, so I would need to see HTML and JavaScript, not .NET code. So, show the relevant JavaScript and HTML as they appear on the client-side.
May 21 '08 #9
malav123
217 New Member
I'm not much of a .NET person, so I would need to see HTML and JavaScript, not .NET code. So, show the relevant JavaScript and HTML as they appear on the client-side.
Thanks for kind response but now my problem is solved...
at time of loading i blocks the modal popup and activates only when the user clicks on it....
May 22 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

3
10555
by: Not Me | last post by:
Hey, I'm using the MS AJAX libraries to achieve a modal popup window. Prior to using the toolkit control, I have a gridview and detailsview objects visible on the page.. when the gridview row is selected, the detailsview updates (in a seperate updatepanel - no full refresh) Now I've added the modalpopupextender and the result is that although the ok/cancel buttons on the panel appear.. the details within the detailview are blank...
1
2940
by: Samuel Rhodes | last post by:
hi i am using a ajax modal popup to allow the user to search an item and select the required item from the list. whenever i try to search the item, which causes a post back....the modal popup disappears/becomes invisible... in general, any postback fired from within the modal popup makes the modal popup disappear.
1
4845
by: mbruyns | last post by:
i have been trying (and sometimes succeeding) to use the modalpopupextender to show various panels of controls on my asp pages. the strange problem that i keep on running into is that sometimes it works, displaying an awesome popup, while other times, it doesn't show a popup at all, but rather just page posts back and the panel becomes visible at the bottom of the page (where it is situated in the designer). what is even stranger to me is that...
10
4330
malav123
by: malav123 | last post by:
Hi, In my master page i have right pannel, in which i am using the user control and collapsiblePanelExtender and in that right panel there is one link button named "Event", so if user clicks on that link button then the modal popup extender will be displayed... all thing is working well but when modal popup extender displays at that time in the back side collapsible extender also works that is not desirable situation of...
3
1955
by: jarremw | last post by:
hello all, what i have is a modal popup control extender, i have an ajax script that saves the value of the two textboxes that are in the popup, what i am needing is a way to insert those values into my mysql database using ajax since the server side code will have already been executed, how would i go about doing this, i have read on the xmlhttprequest function but im not sure if that is what i need, in the modal pop up i have two textboxes and...
1
3700
malav123
by: malav123 | last post by:
Hi, In my master page i have right pannel, in which i am using the user control and collapsiblePanelExtender and in that right panel there is one link button named "Event", so if user clicks on that link button then the modal popup extender will be displayed... all thing is working well but when modal popup extender displays at that time in the back side collapsible extender also works that is not desirable situation of the modal popup...
1
5211
by: mistryman06 | last post by:
Hi, I'm new to the ASP.NET Ajax. Im struck with an issue. Im having a tabcontainer with 3 tabs. Each tab has a user control (all 3 tab has the same user control) & the user control has a Button & ModalPopup Extender. While running the application, When I click the TAB1's Button i get a modalpopup in the page. But when i select the TAB2 and click on the Button. Im not getting any modalpopup in the 2nd tab rather i see the modal popup in...
5
10863
by: =?Utf-8?B?SmFtZXMgUGFnZQ==?= | last post by:
Hi all Have a couple of issues with the modal popup extender (asp.net 3.5, vb.net, visual studio 2008): I have created a user control (e-mail enquiry form) which is designed to accept text input then send an e-mail. The user control has 2 views – view 1 –e-mail input form, view 2 confirmation that e-mail has been sent.
2
7247
by: btreddy | last post by:
Hii experts, Im tring to display a panel as a modal popup when i click a link button which is placed in the footer template of my Grid view.But its not getting compiled and the error its showing is "The TargetControlID of 'mpeAddParticipant' is not valid. A control with ID 'ParticipantMeetingID' could not be found"'mpeAddParticipant' is the id of the modal pop up extender and 'ParticipantMeetingID' is the id of the link button which ic...
0
8394
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8306
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8732
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6164
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.