Click here to Skip to main content
15,889,335 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to fetch all unique/distinct values in a GridView Pin
Andy Tek4-Feb-13 13:05
Andy Tek4-Feb-13 13:05 
AnswerRe: How to fetch all unique/distinct values in a GridView Pin
Sandeep Mewara4-Feb-13 15:46
mveSandeep Mewara4-Feb-13 15:46 
QuestionHiding the physical path of a file in downloading Pin
Majid Shahabfar4-Feb-13 10:27
Majid Shahabfar4-Feb-13 10:27 
QuestionOne time Login needed.. Pin
ashu20013-Feb-13 21:48
ashu20013-Feb-13 21:48 
QuestionWCF REST hosted inside ASP.NET WebForms app - 400 on production server Pin
RichardGrimmer3-Feb-13 21:35
RichardGrimmer3-Feb-13 21:35 
QuestionTwitter connect rest api v1.1 Pin
Rockerr Black3-Feb-13 20:55
Rockerr Black3-Feb-13 20:55 
AnswerRe: Twitter connect rest api v1.1 Pin
Sandeep Mewara3-Feb-13 21:42
mveSandeep Mewara3-Feb-13 21:42 
QuestionProblem with popup confirmation page using ModalExtender Pin
Nafiseh Salmani2-Feb-13 19:05
Nafiseh Salmani2-Feb-13 19:05 
Hey, can anybody help me with this? I have the following code, I put the pop-up related part into an empty webform and that works fine, but in the form that I really want to have that, it doesn't work! there is no error showing what is wrong with this! (the script manager is on the master page). Any note or comments to help me to figure out what is wrong with it?!

here is the code:


XML
/*for user code pop-up */
.confirm-dialog .base
{
    BORDER-TOP: #ddd 1px solid;BACKGROUND: url(img/base.png) no-repeat left bottom;
    PADDING-BOTTOM: 4px;MARGIN-LEFT: -11px;MARGIN-RIGHT: -11px;
    PADDING-TOP: 4px;TEXT-ALIGN: center;
}
.modalBackground
{
    background-color:Gray;filter:alpha(opacity=70);opacity:0.7;
}



<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajaxToolkit" %>
<asp:Content ID="Content2" ContentPlaceHolderID="headerContent" runat="server">
<script type="text/javascript">
    function Popup()
{
    var modalPopupBehavior = $find('ModalPopupBehavior1');
    modalPopupBehavior.show();
}
</script>
    <style type="text/css">
        .confirm-dialog
        {
            margin-bottom: 0px;
        }
    </style>

</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="phBody" runat="server">
    <div class="PageDesc">
        <asp:Localize ID="userCodesPageDescr" runat="server" EnableViewState="False"
            meta:resourcekey="userCodesPageDescrResource1" Text="User Codes enable individual users to arm and
        disarm your security system. Check 'Security Panel Access' to give a user local access so they can arm/disarm
        through the system keypad. Uncheck it to remove local access temporarily - the code will still show
        on the website. (Note that user codes must be 4 digits. Codes 0000 and 0001 are not allowed.)"></asp:Localize>
    </div>
    <div class="PageDesc" align="right">
    <asp:LinkButton ID="lbtnRequestUserCode" runat="server" OnClientClick="Popup()"
                                meta:resourcekey="lbtnRequestUserCodeResource1"
             CausesValidation="False">Request Panel User Codes</asp:LinkButton>
    </div>
   <div>

    <asp:Panel ID="confirmPanel" runat="server" BackColor="White" Width="325px"  CssClass="confirm-dialog"
    meta:resourcekey="confirmPanelResource1">
    <div style="background-color: #EEEEEE; font-weight: bold; padding: 5px 5px 5px 5px;">
        <asp:Localize ID="Localize1" runat="server"
            meta:resourceKey="locConfirmDeleteRc1" Text="Request User Codes from Panel"></asp:Localize></div><br />
    <div style="padding: 0px 10px 15px 10px;">
        <asp:Localize ID="Localize2" runat="server"
            meta:resourceKey="ConfirmDeleteTextRc1"
            Text="Are you sure you would like to replace the website user codes with the user codes from the panel?"></asp:Localize> <br /><br />
        <asp:Localize ID="Localize3" runat="server"
            meta:resourceKey="ConfirmDeleteTextRc1"
            Text="&lt;b&gt;Note: Codes uploaded from the panel will overwrite those in the website if they are out of sync.&lt;/b&gt; "></asp:Localize> <br /><br />
       <br /><br />
        <table width="100%">
            <tr>
                <td style="text-align: center;">
                    <asp:Button ID="butConfirmYes" runat="server" Text="Countinue" CssClass="styledbutton"
                        meta:resourcekey="butCountinue_userCode1"  OnClientClick="Popup();"/>
               </td>
                <td>&nbsp;</td>
                <td style="text-align: center;">
                    <asp:Button ID="butCancel" runat="server" Text=" Cancel " CssClass="styledbutton" meta:resourcekey="butCancel_userCode" />
                </td>
            </tr>
        </table>
    </div>
</asp:Panel>
<asp:Panel ID="pnlModal" runat="server">
<ajax:ModalPopupExtender ID="modalPopup" runat="server" BehaviorID="ModalPopupBehavior1"
    CancelControlID="butConfirmNo" OkControlID="butConfirmYes"
    PopupControlID="confirmPanel" TargetControlID="lbtnRequestUserCode"
    DynamicServicePath="" Enabled="True"  BackgroundCssClass="modalBackground" />
 </asp:Panel>
    </div>


    <uc1:UserCodesControl ID="usercodes" runat="server" />

    <asp:Panel ID="pnlCSNote" runat="server" Visible="False" CssClass="PageDesc"
        style="margin-top: 10px" meta:resourcekey="pnlCSNoteResource1">
        <p><span style="font-weight: bold">
                <asp:Localize ID="labelNote" runat="server" EnableViewState="False"
                meta:resourcekey="labelNoteResource1" Text="Note:"></asp:Localize>
           </span>
            <asp:Localize ID="userCodesNote" runat="server" EnableViewState="False"
                meta:resourcekey="userCodesNoteResource1" Text="The changes you make on this page will not update the response information
            in the central monitoring station. In order to make changes to the response information
            stored at the central station, which is used to respond to alarm signals from your
            account, you should contact your alarm dealer or the central station directly."></asp:Localize>
            </p>
    </asp:Panel>



</asp:Content>

AnswerRe: Problem with popup confirmation page using ModalExtender Pin
Blikkies3-Feb-13 22:14
professionalBlikkies3-Feb-13 22:14 
GeneralRe: Problem with popup confirmation page using ModalExtender Pin
Nafiseh Salmani4-Feb-13 4:30
Nafiseh Salmani4-Feb-13 4:30 
GeneralRe: Problem with popup confirmation page using ModalExtender Pin
Nafiseh Salmani4-Feb-13 4:53
Nafiseh Salmani4-Feb-13 4:53 
Questionrelated to itext sharp Pin
Member 97985411-Feb-13 19:31
Member 97985411-Feb-13 19:31 
AnswerRe: related to itext sharp Pin
Abhishek Pant1-Feb-13 23:31
professionalAbhishek Pant1-Feb-13 23:31 
GeneralRe: related to itext sharp Pin
Member 97985414-Feb-13 19:30
Member 97985414-Feb-13 19:30 
GeneralRe: related to itext sharp Pin
Abhishek Pant4-Feb-13 21:36
professionalAbhishek Pant4-Feb-13 21:36 
GeneralRe: related to itext sharp Pin
Member 97985416-Feb-13 17:41
Member 97985416-Feb-13 17:41 
GeneralRe: related to itext sharp Pin
Abhishek Pant6-Feb-13 18:09
professionalAbhishek Pant6-Feb-13 18:09 
GeneralRe: related to itext sharp Pin
Member 97985416-Feb-13 19:21
Member 97985416-Feb-13 19:21 
GeneralRe: related to itext sharp Pin
Member 97985416-Feb-13 18:08
Member 97985416-Feb-13 18:08 
Answerrelated to itext sharp-iText use for commercial purpose Pin
Abhishek Pant6-Feb-13 19:07
professionalAbhishek Pant6-Feb-13 19:07 
AnswerRe: related to itext sharp Pin
Sandeep Mewara2-Feb-13 0:24
mveSandeep Mewara2-Feb-13 0:24 
QuestionDisplay image using handler.ashx what wrong my code Pin
Michael†Cheong31-Jan-13 20:43
Michael†Cheong31-Jan-13 20:43 
AnswerRe: Display image using handler.ashx what wrong my code Pin
Richard Deeming1-Feb-13 2:17
mveRichard Deeming1-Feb-13 2:17 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Michael†Cheong1-Feb-13 4:16
Michael†Cheong1-Feb-13 4:16 
GeneralRe: Display image using handler.ashx what wrong my code Pin
Richard Deeming1-Feb-13 5:36
mveRichard Deeming1-Feb-13 5:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.