Click here to Skip to main content
15,884,739 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Embedded image in portable area not showing on deployment Pin
jkirkerx26-Nov-11 19:35
professionaljkirkerx26-Nov-11 19:35 
GeneralRe: Embedded image in portable area not showing on deployment Pin
AumSingh27-Nov-11 6:05
professionalAumSingh27-Nov-11 6:05 
GeneralRe: Embedded image in portable area not showing on deployment Pin
jkirkerx27-Nov-11 8:51
professionaljkirkerx27-Nov-11 8:51 
QuestionAJAX ENABLED WEBSITE IN VS 2010 Pin
Member 322226425-Nov-11 2:03
Member 322226425-Nov-11 2:03 
AnswerRe: AJAX ENABLED WEBSITE IN VS 2010 Pin
Not Active25-Nov-11 3:15
mentorNot Active25-Nov-11 3:15 
AnswerRe: AJAX ENABLED WEBSITE IN VS 2010 Pin
jkirkerx25-Nov-11 19:20
professionaljkirkerx25-Nov-11 19:20 
GeneralRe: AJAX ENABLED WEBSITE IN VS 2010 Pin
Member 322226426-Nov-11 0:40
Member 322226426-Nov-11 0:40 
GeneralRe: AJAX ENABLED WEBSITE IN VS 2010 Pin
jkirkerx26-Nov-11 7:16
professionaljkirkerx26-Nov-11 7:16 
I can't remember what the update panel tag looks like exactly, I write in pure code behind, but make sure you have all the components needed to make an update panel work.

1. Update Panel
2. Content Template Container
3. Trigger - Usually a Async PostBack Trigger.

The content in an update panel will render, but to issue a postback of just it's content, you need a button with a trigger wired to it. The trigger contains the button ID or name, and something else. Just make sure everything is wired up to each other.

Don't copy and paste the code, it's hand written, just reference to give you an idea. But the update panel is not part of the AJAX Control toolkit. It's a member of System.Web.Ext I think.

<asp:updatepanel runat="server" ID="updatepanel_ContactForm" updatemode="conditional">
    <asp:contentTemplateContainer runat="server">
        <asp:panel runat="server" ID="panel_ContactForm" style="width: 850px;">
           /* Place your form content here */
        </asp:panel>
    </asp:contentTemplateConatiner>
</asp:updatepanel>

<asp:trigger ID="bt_ContactForm_Submit_Trigger" ControlTarget="bt_ContactForm_Submit" Event="click">

GeneralRe: AJAX ENABLED WEBSITE IN VS 2010 Pin
Member 322226428-Nov-11 0:05
Member 322226428-Nov-11 0:05 
QuestionWeb Service input validation in WSDL Pin
umairmoghal23-Nov-11 21:53
umairmoghal23-Nov-11 21:53 
AnswerRe: Web Service input validation in WSDL Pin
jkirkerx24-Nov-11 8:56
professionaljkirkerx24-Nov-11 8:56 
Questionshowing crystal report with query string parameter Pin
sk_ko23-Nov-11 16:11
sk_ko23-Nov-11 16:11 
AnswerRe: showing crystal report with query string parameter Pin
thatraja23-Nov-11 17:03
professionalthatraja23-Nov-11 17:03 
GeneralRe: showing crystal report with query string parameter Pin
sk_ko23-Nov-11 17:22
sk_ko23-Nov-11 17:22 
AnswerRe: showing crystal report with query string parameter Pin
thatraja23-Nov-11 19:20
professionalthatraja23-Nov-11 19:20 
GeneralRe: showing crystal report with query string parameter Pin
sk_ko24-Nov-11 14:56
sk_ko24-Nov-11 14:56 
AnswerRe: showing crystal report with query string parameter Pin
thatraja24-Nov-11 15:05
professionalthatraja24-Nov-11 15:05 
GeneralRe: showing crystal report with query string parameter Pin
sk_ko24-Nov-11 15:44
sk_ko24-Nov-11 15:44 
AnswerRe: showing crystal report with query string parameter Pin
thatraja24-Nov-11 18:19
professionalthatraja24-Nov-11 18:19 
QuestionHow to fill several comboboxes with for loop? Pin
symeramon23-Nov-11 4:01
symeramon23-Nov-11 4:01 
AnswerRe: How to fill several comboboxes with for loop? Pin
Satheesh154623-Nov-11 6:22
Satheesh154623-Nov-11 6:22 
GeneralRe: How to fill several comboboxes with for loop? Pin
Richard MacCutchan23-Nov-11 10:55
mveRichard MacCutchan23-Nov-11 10:55 
QuestionServer Error in '/book' Application. Pin
keyur satyadev23-Nov-11 2:13
keyur satyadev23-Nov-11 2:13 
AnswerRe: Server Error in '/book' Application. Pin
thatraja23-Nov-11 17:09
professionalthatraja23-Nov-11 17:09 
Questionany one can tell query or SP how to insert image in sql server Pin
sheemap23-Nov-11 1:15
sheemap23-Nov-11 1:15 

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.