473,402 Members | 2,061 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

Ajax Modal Popup Extender And gridview

malav123
217 100+
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 11068
acoder
16,027 Expert Mod 8TB
Post what code you have so far.
May 20 '08 #2
malav123
217 100+
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 Expert Mod 8TB
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 100+
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 100+
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 Expert Mod 8TB
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 100+
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 "RowDataBound" of gridview control...
May 21 '08 #8
acoder
16,027 Expert Mod 8TB
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 "RowDataBound" 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 100+
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
acoder
16,027 Expert Mod 8TB
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....
That's good to hear. Can you show the changes you made?
May 22 '08 #11
malav123
217 100+
That's good to hear. Can you show the changes you made?
Ya why not... i have made changes which are very small but makes very big difference....


i thinks i have posted all the changes that is in my code which i have posted before... but at last by setting style property it gave me desired result given below...

Expand|Select|Wrap|Line Numbers
  1.  
  2. <asp:Panel ID="Panel1" runat="server" style="display: none"  CssClass="modalPopup">
  3.  
  4.  
May 22 '08 #12
malav123
217 100+
That's good to hear. Can you show the changes you made?

The panel which displays as a content of modal popup extender....
thanks again....
May 22 '08 #13
acoder
16,027 Expert Mod 8TB
Oh is that all it was? You just needed to hide the content! That's too simple ;)

Thanks for posting.
May 22 '08 #14
malav123
217 100+
Oh is that all it was? You just needed to hide the content! That's too simple ;)

Thanks for posting.


Ya solution was so simple... but the result is too benificial for my project... before the problem solved it was taking too much execution time at the time of page loading because at the time of load all the rows was loading modal popup extender and that was also displayed at time of grid load... it was also not looks good so i m happy that very big problem is solved...
May 23 '08 #15
acoder
16,027 Expert Mod 8TB
Glad to hear it. Good luck with the rest of your project.
May 23 '08 #16
malav123
217 100+
Glad to hear it. Good luck with the rest of your project.

Thank u so much for best wishes..........
May 23 '08 #17

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

Similar topics

3
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...
1
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...
1
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...
10
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...
3
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...
1
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...
1
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 &...
5
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...
2
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...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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...
0
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...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.