So I have a two radio buttons. If RadioButton1 is selected, I want Panel1 to be visible and Panel2 to be hidden. If RadioButton2 is selected, I want Panel2 to be visible and Panel1 to be hidden. Is there a way to do this without requiring a postback?
...
Hi,
I followed the following link
http://weblogs.asp.net/justinsaraceno/archive/2008/02/22/reorderlist-with-objectdatasource.aspx
and manged to make the orderlist work fine except one thing and probably the most importent thing
which is saving the reorder back to the database
what I changed
First I'm using it as a c# web form insid...
iam using asp.net and asp.net-ajax
every thing happens on browser
urls are of format
http://somepage#page1
http://somepage#page2
http://somepage#page3
now all these urls are in a secured folder
when logged in user directly types (or use bookmark) a url like below, he is shown that page
http://somepage#page2 -- (bookmarked url lyin...
Hello All,
We have a production Server which has ASP.net 2.0 Application running with Ajax 1.0 and corresponding toolkit (Toolkit version 1.0.20229).
I have been asked to move another application build using ASP.net 3.5 which also utalizes latest ASP.NET AJAX and corresponding toolkit (Toolkit Version 3.0.X).
Can these two applicatio...
Consider a LOB site, where users work on a large shared dataset.
Using Wcf Data Services on the server side and the DataContext and DataView from the AJAX 4.0 client library on the client side to enable CRUD operations.
Getting the data on the initial load is straight forward, just query the server and display the data (in a table for e...
Hello,
Just wanted to know when using updatepanels if the whole page will be posted back or just the controls inside the updatepanel.
thanks
...
I'm having an annoying problem which I have asked some questions about already, now I finally tracked it down, and I think I'm close to a solution, with your help of course.
I have two JavaScript files, both using jQuery, but only one of them are running. The one working starts with "$(document).ready(function() {.." and works just fine...
I want in my asp.net application is to create a schedule.The events should be dragged from the treeview and dropped onto the calendar control to create the schedule.What i want is that someone could suggest what is the best calendar control available in the market to do so.My budget is 300$.If there is some other way of achieving this th...
Hello!
I'm developing an ASP.NET web application with AJAX.
I have a page where the user can edit some information: it has a list of item, the user select one item, click on Edit button and then edit item's name and item's description on two textboxes.
If user click on another item since he doesn't save his changes, he can click on ed...
Everything works as expected and the action returns a partial view (called Features to the features div with the correct Model which is a dataset).
In other situations where I faced the same problem (the partial view not being reloaded), the cause was that I was using the BeginForm with the correct parameters in the wrong place, but in ...
I am getting an error when I trying to Right Click in the Tab, and select Choose Items.
I am getting following error and VS is closing.
The Exception unknown software exception (0xe0434f4d) occurred in the application at location 0x7c812a6b
Any help is appreciated.
...
Hi There,
I have an ajax ReorderList, with some Insert items. on some conditions for some users I would like to hide the InsertItemTemplate, how cand I achieve this?
Thanks in advance
...
I'm currently building an inhouse mvc.net reporting app. So far the pages charts etc have been relatively hard coded. i.e. 1 page for this chart, another page for this table. But I'd like to extend it so users have more control over what they're looking at.
iow 'A dashboard'.
I'd like suggestions on what other people have used and wha...
Hello.
I have an ASP.Net FileUpload inside an UpdatePanel. When I click on a save button inside the same updatepanel and check on serverside if that control hasFile it is allways false.
Where is my error? Do I need to post the entire page?
Thank you!
...
Hi!
I'm developing a Asp.Net website that will be used for a lot users. Would you recomend the use of Ajax Control Toolkit on these kind of website?
Update:
I'm trying to imagine the worst scenario. Maybe with one user it will work perfectly.
By the way, I only use this controls from Ajax Toolkit:
ValidatorCalloutExtender, MaskedEdi...
I have an AJAX form which returns a partial view, but instead of the target div getting updated, when I submit, only the partial view is shown. As far as I can tell, I have everything set up the way it's supposed to be, what's going wrong?
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<ApplianceSurvey.Models.Ite...
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.NewFolder1.WebForm1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt...
hi i have a gridview inside an updatepanel, in the gridview i have image buttons on click of which an popup should open, but instead an javascript error occurs as 'sys.webforms.pageRequestManagerServerErrorException: Invalid Postback or callback argument. Event Validation is enabled using in configuration or <%@Page EnabledEventValidati...
Hi everyone!
I'm having an issue with ajaxToolkit:AutoCompleteExtender in ASP.NET. When an item is numeric and longer than 17 digits, it's shown in scientific notation.
Does anyone know how to solve this? I googled it for a while and couldn't find anything.
Thanks!
...
Hi I have web app which stores certain things on a page in a cookie when the page posts back in case the user doesn't finish what they're doing and come back later. But now I must do a javascript time-out and actively save the info to the cookie rather than wait for the user to postback. All my cookie code is on server side where I use...