AJAX :: Make Casecading Dropdownlist With Using Ajax?
Jan 18, 2011make dropdown using ajax.i am going to tried .
View 3 Repliesmake dropdown using ajax.i am going to tried .
View 3 Repliesi have a DropDownList, which is inside an UpdatePanel. Now my problem is that, for example, lets say there are 3 item, Item1, Item2, Item3.
Now Item1 is the default, and i have code in codebehind that gets the value of the selected DropDownList, so for example, my code:
string connectionString = ConfigurationManager.ConnectionStrings["PokemonPlanetConnectionStrings"].ConnectionString;
string insertSql = "UPDATE Items SET ItemSelect = @ItemSelect";
using (SqlConnection myConnection = new SqlConnection(connectionString))
{
myConnection.Open();
SqlCommand HubInsert = new SqlCommand(insertSql, myConnection);
HubInsert.Parameters.AddWithValue("@ItemSelect", DropDown1.SelectedValue.ToString());
HubInsert.ExecuteNonQuery();
myConnection.Close();
}
Now the problem is that, once it is in an update panel, when you change the list to another item, so for example, i changed the list to "Item2", it will still be showing the first value of "Item1", i could have used Autopostback to get what i need, but then i wouldnt see the point in using update panel, since i dont want my page to flick.
Is there a way, or code to write that whenever the value of the DropDownList is changed, and i click my button, it will actually get the currently selected value, and not the virst default value,
I my website i have 2 dopdownlost i want when i change the value of one.. The other one loads data depending on the first one value
the both of the dropdownlists is in ajax update panal and i do have script manager
i used this code but not working
protected void floor_ddl0_SelectedIndexChanged(object sender, EventArgs e)
{
floor_ddl1.DataBind();
}
I am new to WCF, I was using web service asmx before. I have trouble on making my wcf JSON ajax service work through http like asmx.Could you help me see what wrong in my code?My WCF services are defined in my website application folder. My aim is to call this service in my aspx page java-script code and return complex object back as JSON to my javascript. I have no problem on doing this through classic asmx web service.
When I try to test it through my browser by type this in the URL , URL-http://localhost:3849/WebServices/Account/WCFCompanyService.svc/GetAll. it return "Method not allowed."
But if I type just this URL-http://localhost:3849/WebServices/Account/WCFCompanyService.svc, it return this:
WCFCompanyService Service
You have created a service.To test this service, you will need to create a client and use it to call the service. You can do this using the svcutil.exe tool from the command line with the following syntax:
svcutil.exe URL-http://localhost:3849/WebServices/Account/WCFCompanyService.svc?wsdl
This will generate a configuration file and a code file that contains the client class. Add the two files to your client application and use the generated client class to call the Service. For example:
C#
class Test { static void Main() { HelloClient client = new HelloClient();
[Code]....
This is my Ajax-enabled WCF service code:
[Code]....
This is the web.config service model setting
[Code]....
I would like to make a custom accordion, in which I have 2 panes, but where you couldn't open the second one until you clicked a validation button in the first one that would open the second...
I tried to just make a button that would hide the first pane but I cant get to make it work.
[Code]....
[Code]....
I am using Framework 2.0, ASP.NET AJAX 1.0 and Visual Studio 2005.I am using 2 Ajax Calendar Extender in my page. I am using a text box and html image control and setting the TargetControlID to the test box id and the PopupButtonID to the image control name. When i click the first image the calendar pops up and without choosing a date if i click the second image the second calendar control opens on top of the first calendar control. Is there any way i can make the previous one disappear without choosing a date leaving the calendar control associated with the last image clicked.
View 2 RepliesI want to making another dropdownlist visible=false when clicking in dropdownlist on the same detailsview?
View 4 RepliesThis is my Controller method
[HttpPost]
public ActionResult RemoveValue()
{
return View();
}
And this is how i am trying to access to method
@Ajax.ActionLink("Asenkron process", "RemoveValue")
But if i remove HttpPost attribute then it works. I have tested this on MVC 3 RC 2
i want to make page preloader ,but dun knoe how to do make it.
View 10 RepliesI simply can add Ajax toolkit to a project and make Ajax-enabled website at work place, however there is always a white and blank page on my own PC, when try to make the same project.
Although I've installed Ajax Toolkit, and Ajax minifier on both VS 2008 and 2010, but I can't make Ajax-enabled website at home.
I have a website in my hands that wasn't developed entirely by me, and i wanted to add some ajax controls to it (update panel would be the first).
how do i know if my site is already ajax enabled?
And third, in case it is not, what should i do to enable it? I understand this must be a question that has been posted many many times, and i have read some topics with it, but i couldn't quite figure out what to do.
I came across this amazing website built in asp.net and AJAX. Just look at how the pages are. Its amazing. When you add products into shopping cart, it immediately gets added without a postback and there is a sweet little Tooltip that indicates that the item has been added.
Plus, when I click on the 'Login' link, that nice shadow window pops up with the opaque background.
Heres that Ajax-enabled website I came across:
[URL]
I need to Ajaxify my website and add similar features like this one.
i want to make 1 chatting application in asp.net, but i don't know nay thing abt that
1 requirement for making chat application
i find a lot of websites that have some parts in the page that uses ajax much more faster than i used to see ajax requests
like changing views using tabs when i click a tab it changes content very fast than i used to in my web applications using Asp.Net and Ajax Control Toolkit
and also a very quick paging in repeaters or grids than i ever developed in my web apps
like this website [URL] i need to know which technology used to achieve this this website is developed using .net
so
but i need to know is this needs another technology to learn (from where can i learn it)
or is it just asp.net + ajax or whth other technology
is it MVC
also i want to know if MVC is better than asp.net + ajax in concern with performance
I wanted to make use of AJAX 4.0 new feature of ClientIDMode.I have a dropdownList inside updatePanel. I defined a unique ID for this control and set the ClientIDMode to be static.The problem is , when I select the dropdown list, the page jumps(postbacks). However this does not happen if I remove the Static setting for CleintIDMode. I have also downloaded a new ajax 4.0 dll from the codeplex library
View 1 RepliesI use DropDownExtenders everywhere in my project, but it bothers me that it's not visible all the time. It looks like an usual TextBox :-(
<script
type="text/javascript">
I want to make an interative menu. There will be some options and each option will have some suboptions. When someone clicks on an option, its suboptions will appear. For instance:
Option A
Option B
Option C
If someone clicks on option A, then the menu options B and C will roll down, making the suboptions appear
I want to make an interative menu. There will be some options and each option will have some suboptions. When someone clicks on an option, its suboptions will appear. For instance:
Option A
Option B
Option C
If someone clicks on option A, then the menu options B and C will roll down, making the suboptions appear
I have been trying to make a cascading drpdown using ajax using this link [URL] But m nt getting a clear picture abt it.. I have a table 'car' with fields of 'id','make','model','color'. I have 2 dropdowns on my form for make & model.I want to populate the model dropdown using the make dropdown but without postback.Till nw I have tried this :-
using System;
using System.Web;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Web.Services;
using System.Web.Services.Protocols;
using AjaxControlToolkit;
using System.Data;
using System.Data.SqlClient;
using System.Configuration;
//using System.Web.Script.Services.ScriptService;.............................
Using the control toolkit, is it possible to display a message box that shows a fade-out animation for few seconds and closes itself if user does not close it ? Is it possible at all ? In essence, to simulate Outlook style e-mail notification toast. I guess ModalDialogExtender and AnimationExtender could be used but not sure how to use them together to simulate such a notification message box.
View 6 Repliesi make some button, i want it just work at 12 am only but, the user can change their time on they pc , how to set the time is server time only
View 2 RepliesI'd like to be able to have the .NET AJAX CalendarExtender show on Load without having to click in a TextBox. If I can simulate a TextBox being clicked so the CalendarExtender will show I'll take that too.
View 1 RepliesI have a tab container with two tabs. In one of the tab panels, I have a button. I want by pressing the button to make a label in master page visible:
[Code]....
The event fires, the event handler is executed, but the lable doesn't become visible. If I place the button outside of the tab container, it works.
This is so frustrating to me. I'm doing this via standard .NET 2.0+ web services (not WCF). My application is in .NET 3.5 but I'm just adding a service reference. I've not done any SOAP WSDL sending before. I've used NVP which to me seems much more error prone and burdensome because you have to create all the wrappers yourself and if any of that third party API changes, it breaks your code. I have not a clue how to make a call using the latest PayPal WSDL. I added the service reference and I see proxy classes such as [className]Request and [className]Response but how do you actually make the CALL and send the request over the wire?
I see people have used the outdated (.NET 1.1) PayPal SDK. We do not want to use an SDK just to send a request. Isn't it much easier nowdays in .NET when using any SOAP API to invoke the request? People for example using PayPal are relying on a caller class from that SDK but again it's way, way outdated. So onto today, .NET 2.0+, I thought that you don't need all that plumbing anymore?
How would I do this? I see no good documentation on the net period on .NET 2.0 or 3.5 web services especially SOAP and it's frustrating. Sure add the service reference, use the WSDL and proxy generated class wrappers but outside this HOW to make a request is impossible to find. I'm seeing legacy ways of doing this in .NET and then I hear this is all done under the covers for you in .NET..I guess that must be .NET 2.0+ ?? Is it as simple as just making the proxy class method calls and .NET under the covers takes care of the plumbing to actually send the request over Http unlike .NET 1.1 where you had to do all the plumbing yourself?
Getting familiar with ajax tabs...watched Joe's video. Am building simple wizard with first tab visible, others invisible until "next" is clicked. I know I need an onclientclick event but am very elementary with Javascript and .Net doesn't prompt javascript.
[Code]....