I have a page that calls on an asmx within the project (for some ajax stuff). Within that asmx I'm calculating a value and returning it to be output to the screen.
However I need to do a recalculation that includes summing this value with a few others. The function that performs the calculation is in a UserControl on the page.
How do...
Hi,
New to MVC here, I would like to have the login box working in a jquery dialog across the site by placing it on the master page.
I have wrapped the logOn.aspx form with a dialog div and added a button to open the dialog and some jq
<button id="show-sign-in">Sign In</button>
<script type="text/javascript">
$(function () {
$("#di...
Hello.
I'm developing an ASP.NET application with C# and Visual Studio 2008 SP1. I'm using WebForms.
I have an ASPX page with two UpdatePanels, one on the left that holds a TreeView and other on the right where I load dynamically user controls.
On the left panel I also have buttons to load user controls on the right. I have a ModalPop...
Hello.
I'm developing an ASP.NET application with C# and Visual Studio 2008 SP1. I'm using WebForms.
I have an ASPX page with two UpdatePanels, one on the left that holds a TreeView and other on the right where I load dynamically user controls.
One user control, that I used on right panel, has a FileUpload control and a button to save...
Hi,
I have a small web application with ASP.NET AJAX running well under the Cassini ASP.NET from http://www.ultidev.com/. But when I tried to host it under IIS7, the AJAX is not working. The UpdatePanel, the Calendar extension, the client side validation from the Validation Control are not working at all. I think it must be a problem of...
I want to use AutoCompleteExtender with textbox to auto complete user's entry from mysql database.
but the problem when I run the code and enter a litter should call the webservice method but the problem that the service method return nothing here is my code so please advice me.
<body>
<form id="form1" runat="server">
<div>
...
I'm building a composite control that uses the telerik ajax controls as it's inputs, now the RadComboBox and RadTextBox were working fine, keeping state and returning edited values however the radeditor was posting an empty string everytime. Here's the clincher, it only happens in firefox, in IE the RadEditor works exactly as is expected...
Basically Im building an ASP.NET MVC Application. I have a search page. Its searches for results from a number of different sources. To aid in the speed of page load I decided to load the results from one source first then to dynamically load more results as it finishes searching other sources.
So far I have the first set of results re...
I have a login form on the home page of an ASP.NET 3.5 website which for performance reasons needs to be accessed with a standard HTTP connection. Since the normal postback for an ASP.NET page is relative call for the post, it would mean that when the browser posts the values are sent unprotected.
I would like to do one of two things t...
I have my own Control1 which is dynamically added as child control to Control2 which implements INamingContainer in CreateChildControls() of control2.
Control1 itself implements IPostBackEventHandler. But RaisePostBackEvent() method is never called on Control1, despite I do call postback method from JavaScript.
And yes, there are other...
Hi all,
I have a lot of data to display in a GridView. Because there's so much information per row, I'd like to be able to display additional information when a user clicks on the row, so I thought a PopupExtender from the AJAX Toolkit would be perfect.
Ideally, I want the popup to display whenever any of the controls within the row a...
I am wondering how to add a javascript event handler using asp.net ajax.
I need to add event handlers after ajax update because Jquery plugin to sort tables doesn't work and the onload method to display a screen keyboard does not trigger as well.
Is there a way to do that?
Maybe I need to switch to some other ajax library or/and try A...
I have a collapsible panel on my page from the ASP.Net Ajax control toolkit with in which I have a DatePickerEntender also from the ASP.Net Ajax control toolkit. The problem is that when the body of the Date Picker overlaps the edge of the collapsible panel it is hidden underneath the panel. I have messed about with the z-index on the ...
I have a SharePoint app that is configured correctly in the web.config for asp.net ajax, but when I try to use the Sys class it says it's undefined. I have installed SP2 and know that ajax is enabled because update panels work correctly. ScriptManager is being loaded to the page. I have a script link to register the external js file, and...
I have a check box, RequiredFieldValidator and textbox that have editmask extender
I want to change the control properties programmatically when I check the check box but the problem that nothing happened when I check it.
I made the control post back and I added triggers.
when put break point and go with code step by step will go throu...
AJAX newbie here!
At the moment in my ASP.NET MVC web app my AJAX requests appear to be getting batched or queued, im not sure.
No requests seem to be getting completed until the previous request has finished.
How do I go about getting the requests to return independantly?
I dont necessarily want someone to give me the answer but maybe s...
Is there a way I can pass querystring param to PageMethods? I have this requirement because inside the AjaxMethod I am using some classes which rely on a particular querystring being present.
If I am using Asp.Net ScriptManager, PageMethods is there a way to pass the querystring param from the javascript to the Ajax Web Method?
Example ...
I have implemented the Ajax Autocomplete feature in my application using a web service file that querys my database and it works great. One problem I am having is allowing the user to see the item's name, as that's what they are typing in the textbox, but when they select it, it saves the item's ID number instead of the actual name. I ...
Hi,
I have an ASP page that contains an iframe. I'll call it the main page. I need to set a hidden field's value in the main page once the iframe has finished loading. The iframe is an ASP page that has a hidden field that is set during its page_load. It then needs to pass this value into a hidden field on the main page.
I have an onLoa...
I have an ASP.NET 3.5 web application which works perfectly fine on my local machine and when I deploy it on my Windows 2008 server. I am getting the following javascript error:
Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned fro...