How To Return A Rendered Panel Control Content From Server-side As A Result Of JQuery.ajax()

Jun 22, 2010

At first, I should confess that I am not sure if it is a good practice or not. I have came out with the idea due to my practice of jQuery.ajax().

What I want to achieve is depended on this design:

//Server Side; an .asmx file contains a method like this:
[WebMethod]
public string NewContent(string parameter)
{
string renderedHTML = string.Empty();
switch(parameter)
{
case ("person"):
// create an asp.net panel with
// some controls in it that has form elements to enter person data
// render control and assign its html to renderedHTML
break;
case ("department"):
// create an asp.net panel with
// some controls in it that has form elements to enter department data
// render control and assign its html to renderedHTML
break;
}
}

And from the client I want to do this:

// Some html in the page
<script type="text/JavaScript">
jQuery.post('ajax/myWebServices.asmx/NewContent'
function(returnedPanelContent) {
$('.result').html(returnedPanelContent);
});
</script>

Question is:

How can I make it work? Briefly to have a webservice method that returns different asp.net Panel control content created programmatically so that I can get this control rendered as HTML in my client-side and insert it to my web page?

View 1 Replies


Similar Messages:

AJAX :: Calling Server Side Events For A User Control Loaded In Update Panel - Refresh Page

May 23, 2010

I need to update datalist in image gallery when fileupload has been completed.

<div style="display: block;">
<div>
<div style="padding-left: 15px; padding-right: 15px;">
<div>
<uc1:ctrlFileUpload ID="ctrlFileUpload1" runat="server" />
<uc2:ctrlImageGallery ID="ctrlImageGallery1" runat="server" />
</div>
<div>
</div>
</div>
</div>
</div>

In the Control File Upload I need to fire the the other ctrl to refresh the page.

<asp:UpdatePanel ID="UpdatePanelUploadArea" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<span>
<asp:FileUpload ID="FileUpload1" runat="server" />
<br />
<asp:Button ID="UploadButton" runat="server" Text="Upload Now" OnClick="UploadButton_Click" />
<asp:Label ID="lblResult" runat="server" ForeColor="#0066FF"></asp:Label>
<br />
</span>
</ContentTemplate>
<Triggers>
<asp:PostBackTrigger ControlID="UploadButton" />
</Triggers>
</asp:UpdatePanel>...........

View 25 Replies

How To Get Return Value Of JQuery Confirmation Dialog From Server Side Code

Nov 15, 2015

I have JQuery confirmation dialog function that called by server side code (C#)how to get its return value of that function? in this case the return value would be either Yes or No.I called it in button clicked event as below:

Code:
protected void btn1_Click(object sender, EventArgs e)
{
string message = "Message from server side, please select yes or no";
ClientScript.RegisterStartupScript(this.GetType(), "Popup", "ShowConfirmation('" + message + "');", true);
}

my question is how to get JQuery return value, in this case the return value would be Yes or No?

Code:
=== JQuery Confirmation Dialog ==
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/jquery-ui.js" type="text/javascript"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.9/themes/start/jquery-ui.css"

[code]....

View 1 Replies

JQuery :: How To Get HTML Content Of Editor Control Given In AJAX Toolkit Control Through JQuery In Client

Mar 11, 2011

I have a Editor control with ID="Editor1" . But i want to retrieve its html content entered by the user in the client side through jQuery .

View 3 Replies

AJAX :: Gridview Control In Side Update Panel

May 14, 2010

I have gridview with SelectedIndexChanged event.

when I click on a record in gridview it should call the SelectedIndexChanged event and do some operations.

SelectedIndexChanged event is working OK, but when I put the gridview inside ajax updatepanle SelectedIndexChanged event will not response even if I add AsyncPostBackTrigger trigger for SelectedIndexChanged event.

<%@ Page Title="" Language="C#" MasterPageFile="~/Master.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="IMAM_APPLICATION.WebForm1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div id="mydiv">
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<br /> <br />
<br />
<asp:GridView ID="GridView1" runat="server"
style="position:absolute; top: 280px; left: 30px; height: 240px; width: 915px;"
PageSize="5"
onselectedindexchanged="GridView1_SelectedIndexChanged"
AutoGenerateColumns="False" DataKeyNames="idcontact_info">
<Columns>
<asp:CommandField ShowSelectButton="True" />
<asp:BoundField AccessibleHeaderText="Midle Name" DataField="Midle_Name" />
<asp:BoundField DataField="Last_Name" HeaderText="Last Name" />
<asp:BoundField DataField="Phone_home" HeaderText="Phone Home" />
<asp:BoundField DataField="cell_home" HeaderText="Mobile Home" />
<asp:BoundField DataField="phone_work" HeaderText="Phone Work" />
<asp:BoundField DataField="cell_Work" HeaderText="Mobile Work" />
<asp:BoundField DataField="Email_Home" HeaderText="Personal Home" />
<asp:BoundField DataField="Email_work" HeaderText="Work Email" />
</Columns>
</asp:GridView>
<br />
<br />
<br /></ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="GridView1"
EventName="SelectedIndexChanged" />
</Triggers>
</asp:UpdatePanel>
<asp:RadioButton ID="rdoSearchFlat" runat="server"
style="position:absolute; top: 565px; left: 70px;" Text="Flat Search"
GroupName="Search"/>
<asp:TextBox ID="txtSearch" runat="server"
style="position:absolute; top: 560px; left: 170px;" ></asp:TextBox>
<asp:Button ID="btnSearch" runat="server" Text="Search"
style="position:absolute; top: 555px; left: 375px;"
CausesValidation="False" onclick="btnSearch_Click"/>
<asp:Label ID="Label7" runat="server" Style="position: absolute; top: 630px; left: 85px;"
Text="First Name"></asp:Label>
<asp:TextBox ID="txtFirstName" runat="server" Style="top: 630px; left: 185px; position: absolute;
height: 22px; width: 128px">
</asp:TextBox>
</div>
</asp:Content>

View 7 Replies

Custom Server Controls :: Require Video Tutorial For Composite Server Control And Rendered Server Control?

Aug 20, 2010

according to what i read from web there 3 types of custom server controls

1. composite

2.superclass

3.rendered

i found video tutorial to create and use superclass custom control in your project (extending dropdown control functionality)

i am trying to search video tutorial for other 2 types .

View 1 Replies

Custom Server Controls :: Property Collections Not Persisted When Control Inside Update Panel And Content Placeholder

Apr 13, 2010

I'm creating an ASP.NET Control which has a property collection for Columns which the user can edit in the Property Collection Editor..

In most circumstances this works fine, the collection can be edited in the designer and the appropriate tags are added inside the control in the ASPX file.

It works fine when

My control is added to the form

[Code]....

My control is added inside an Update Panel

[Code]....

[Code]....

However, if My control is inside a Content Placeholder which is inside an Update Panel, it fails to work as it should. In this scenario, when the Columns collection is edited in the designer, if you then switch back to Source view, the Columns collection is emptied. I have to save the aspx page before switching back to Source view for the changes to be kept.

[Code]....

how to get around this problem? Is there something I may have missed?

Here's the code for the Control

[Code]....

View 2 Replies

AJAX :: How To Receive The Content Of The Editor Control With Jquery

Apr 28, 2010

[Code]....

How can i recieve the Content of the Ajax Editor Control with jquery. It doesn't work!

View 1 Replies

AJAX :: Can't Receive The Content Of The Editor Control With JQuery

Apr 28, 2010

i am using jquery 1.4.2 and asp.net 3.5 with the microsoft ajaxcontroltoolkit.

My Problem is i can't recieve the Content of the Ajax Editor Control with jQuery?

I Know it's a Textarea bvehind the scene but its not possible for me to recieve the

value of the Editorcontrol.

Here is theSource:

[Code]....

I have no problem with normal <asp:Textareas> only the Editor Control from the

AJaxcontroltoolkit doesn't work.

View 5 Replies

Jquery Datatables Add Checkbox With Ajax Server Side Response?

Jun 18, 2010

I am using C# ASP .NET MVC and ajax calls. I am able to get the display of the table along with all features. But, I don't understand how do I add a checkbox and button. I have tried dom-checkbox as well but can't get it to work.

My code looks like this:

$(document).ready(function () {
$('#personTable').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "/Home/GetCustomData",
"aoColumns": [
{ "sSortDataType": "dom-checkbox", "sTitle": "Select",
sName": "" },
{ "sName": "ID", "sTitle": "ID" },
{ "sName": "FirstName", "sTitle": "First Name" },
{ "sName": "Email", "sTitle": "Email"}]
});
});

My Html is :

[table border="1" id="personTable" class="display"]
[/table]

View 1 Replies

AJAX :: Collapsible Panel Extender / Close Automatically Whenever A Link Inside The Content Panel Has Been Clicked?

Apr 14, 2010

I am having trouble wiht my AJAX collapsible Panel Extender. I have the CPE opening a panel that contains the Table of Contents of a document being displayed on the page. A user clicks on the link for a certain part of the document, the event triggers a C# function that gets the file that particular section is contained in an displays the section. Right now you have to, of course, click on the TitlePanel to open and to close the CPE. What I want to do is have it close automatically whenever a link inside the content panel has been clicked. I have tried placing this.cpeTOC.Collapsed=true; in the functiion that gets the files but it does not work. I have also tried the autocollapse property of the CPE and it just collapses whenever someone moves thier mouse from the titlepanel.

View 1 Replies

How To Execute Web Services Asynchronously In Server Side When Called By JQuery's .ajax

Mar 22, 2011

I have an ASP.NET (3.5) web page which calls a few web methods (SOAP based) using jQuery's .ajax method. The web methods implement 'ScriptMethod' attribute and return JSON data. The web service file (asmx) is local to the same project.

I noticed these web methods execute synchronously on the server which means they run sequentially and affect performance negatively, some methods are waiting, when some of them are slow.

I read this article and I am not sure if I understand that WebMethods which implement Scriptmethod can run synchronously only (they implement IHttpHandler not IHttpAsyncHandler).

If this is true, I might have to change the design. I am looking for other designs, maybe like using WCF, where the browser can call webmethods using JavaScript and the web methods run asynchronously on the server.

View 2 Replies

AJAX :: Unable To Get Selected Value Of DropDownList Populated Using JQuery On Server Side

May 7, 2015

We bind dropdown using json and web service but when we click on save button we can not get selected value of that dropdown...

View 1 Replies

C# - Rendering HTML Content From AJAX Result?

Jan 12, 2010

I am writing an application that renders a list of "Job" objects from an AJAX JSON response.

What is the best way to Render the markup from the returned data. Now I'm pretty convinced that its a bad idea to generate HTML markup on the server side and return that from the AJAX call. From experience it makes the HTML hard to maintain and re factoring the content is a nightmare, so I am returning a collection of Job objects as JSON.

The question, then, is how to render the HTML based on user input? I've seen some examples of having your markup template on the page then use JQuery to clone it and populate with the relevant data the insert it into the DOM.

The problem with this is that the template contains visible content (images and suchlike) and the application needs to degrade, so I have a repeater on the page that the severside code and populate on page load if JS is not available.

View 2 Replies

AJAX :: User Control With JQuery Doesn't Work Inside Update Panel?

Sep 21, 2010

I created a .NET user control to work as a DropdownCheckbox and added Jquery to give the sliding and hide effects. The code is as below:

[Code]....

This control works fine in a normal page, but once I put it inside an update panel it doesn't work. Is there a work around or simply I can't use JQuery inside update panel?

View 1 Replies

AJAX :: Button Click Result Not Display When Update Panel Is Used?

May 13, 2010

i have simple button1.click method at serversidewhen i put button inside updatepanel buttonclick event is rasing but results are not displayingI have this form

[Code]....

View 6 Replies

Jquery - Options For Page With Matching Client-side And Server-side Markup?

Oct 17, 2010

Suppose I'm building a StackOverflow clone using webforms ASP.NET and jQuery. The Question page has a question, several answers, and comments under each. Requirements:Users can post new answers and comments, and edit existing ones, without postbacks. No UpdatePanels; the AJAX calls retrieve just the JSON they need, not HTML fragments. The page loads with all existing answers and comments in place (no javascript needs to run to read the page).

What I'm trying to figure out is how to do this without having to maintain two sets of markup (one that's bound on the client using some form of jQuery templating, and one that's bound on the server using traditional WebForms).

View 7 Replies

AJAX :: Dynamic Client-side Content / Getting An "object Expected" Error From An OnClick Event From A HTML Control?

Feb 6, 2010

Is it possible to use JavaScript passed by Ajax on the client-side? I am getting an "object expected" error from an onClick event from a HTML control that is passed with the JS. The controls and JS work when the page is rendered on the server.

View 4 Replies

Detect Client-side When A Page Load Is The Result Of An AJAX History Point?

May 25, 2010

I'm trying to prevent a "flicker" effect that is occurring on my ASP.NET page which occurs when a user navigates to the page via the browser back button after having navigated away from it. The reason for the flicker is that I'm using an Update Panel which has some content in there on the initial page-load. As a result, when the page is loaded via a back button that initial content is shown very briefly before it is updated with the correct History-aware data.

In order to overcome this I am intending on having the updatepanel hidden (display: none) on inital page load and then show it as long as we don't have any history to deal with. The problem is that I can't find out what to check to determine if there's any history. I can see that the Sys.Application has a _history member but when I'm checking it on page init it is null each time.Does anyone know what I should be checking to determine if there's history to deal with for a page load client-side? And at what point to do it?

View 3 Replies

Data Controls :: Unable To Get TextBox Inside GridView Values Modified Client Side Using JQuery On Server Side

Apr 30, 2014

i have a grid as 

<asp:GridView ID="dgv_passengerdetails" runat="server" AutoGenerateColumns="False"
CssClass="pasdetailsgrid" BorderStyle="None">
<Columns>
<asp:BoundField HeaderText="Seat No" DataField="seatno">
<ItemStyle HorizontalAlign="Center" />
</asp:BoundField>

[code]...

the string gs=null, if i click the button again then gs takes the value from textbox.

View 1 Replies

AJAX Tab Control Rendered Hidden?

Feb 21, 2013

My Tab Container works fine on my development machine. But it doesn't show up my production machine. On closer inspection, the Production machine renders it as hidden. Any thoughts on why this would happen?

Mark up:

<asp:TabContainer ID="tcAuditMain" runat="server"
Visible="true" ActiveTabIndex="10" EnableViewState="true"
CssClass="NewsTab" Width="100%">

Rendered:

<div id="ctl00_ContentPlaceHolder1_tcAuditMain" class="NewsTab" style="width:100%;visibility:hidden;">

View 1 Replies

JQuery-AJAX Calling Page Method / How To Return Value Back To JQuery

Jan 31, 2011

If I use jQuery AJAX to call a specific ASP.NET page method how to have that method return a value back to the AJAX method that called it?

Update

My situation is I have an existing web application with many existing methods. I would like to be able to use jQuery to execute some of these methods and then update the UI with the results. My mandate is to stay away from ASP.NET AJAX and stick with jQuery. Management is concerned about continued development and support with ASP.NET AJAX from Microsoft. I agree with them.

View 3 Replies

AJAX :: Server Side Confirmation - Not Control Initiated

Sep 25, 2013

URL...In the above page, the button fires the javascript first, then the code-behind sub runs.  The problem I have is I am in the middle of a code-behind sub routine that checks if a user is logged on the a PC.  If there is a users logged on, I want the confirm popup to ask whether to reboot anyway or cancel.  The code needs to dictate whether to call the javascript, not some direct button click.  Then I need the remainder of the code-behind sub to execute based on the users choice. 

I can call the client script in the code-behind sub using 'RegisterStartupScript...'; then I can get the page's form value.  The problem is that the sub runs to completion without waiting for the javascript code to run.  This causes code-behind variable to get checked before it's set by the client and it nevers works.

View 1 Replies

C# - How To Fetch Return Values Between Jquery Functions And Post Ajax Jquery Request To Webservice

Aug 26, 2010

I have the following code where the function codeaddress geocodes the text feild value and returns geocoded value , geocoded value is stored in variable example ,how will i return the variable v2 to the function call and post to asmx webservice.

[code]....

View 1 Replies

JQuery :: Return HTML And Javascript From A Jquery Ajax Call

Feb 17, 2011

I have this code being called

[Code]....

which returns <div>here</div><script language=javascript>alert('');</script> The content gets loaded property, but no alert. How would I get a javascript routine to work from an ajax call along with posting the HTML code?

View 4 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved