Im using aspnet 3.5, vs 2008, ajax 2.0, plain old javascript (not using any javascript framework).
In a asp:listview i have a button (delete) with a OnClientClick= "turnrowpink(this);"
I also have an ajax 2.0 confirmbuttonextender for this button ( are you sure you want to delete this record? )
The turnrowpink function used to run be...
I have a page that contains many user controls, each of which uses Ajax. When I load this page, under certain conditions, I want to do a response.redirect; however response.redirect statement is being trapped by Ajax code and never happens.
How do I do a response.redirect from a page that contains Ajax controls?
Thanks....
...
I have a page with several user controls that use Ajax. When I try to do a response.redirect from this page, Ajax traps the call and does not allow the redirect.
How can I do a response.redirect from an Ajax page?
Thanks...
...
hello All,
I am new to the programming world of dojo and web applications. I am trying to acomplish a task where I want to manipulate the textbox value with some text. I tried everything including some code from dojocampus, but even this code doesnot do anything. I have also tried to create an instance , with dojo.widget.byId and dijit....
I'm building a client-side ajax login for Asp.Net MVC by doing jquery posts to the controller to log in the user.
What I'm wondering is when the user goes to log out, should the page refresh? (for security reasons)
This tutorial here says:
There will always be a page refresh on
logout. This is necessary to ensure
that any user...
What should I look into to accomplish this.
When you select an input field some text to the right shows up.
For example: https://twitter.com/signup
Anyway i need something like that works with PHP. What should I look in to?
And also How can you query the database and not have to reload the page to see result? For example i have seen ...
In a Ruby on Rails project I need to have a JavaScript function executed at the end of an Ajax call. My problem is that the values being passed into the JavaScript function being called with page.call are being wrapped up in quotes. Not too much of a problem if you're passing in strings but one of the values is a string representation of...
I'm trying to speed up the data entry for my awards database. My "people" table currently has five fields:
peopleid
first
middle
last
display
So an entry might be:
peopleid 120
first William
middle H.
last Macy
display William H. Macy
Is there an AJAX library that you can suggest that would enable someone entering the data...
Hi all,
I am trying to convert a PHP/JQuery sortable drag and drop script. I want to add JQuery sortable functionality to a site I have that is written in Classic ASP.
Here is a scaled down version of the script:
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.7....
What's the best Ajax library for PHP and why do you prefer it?
...
I have this code.
function loadBottom(dockitemid)
{
var itemno = dockitemid.substring(3,4);
var adres = pages[itemno - 1];
$("#BottomLoader").fadeIn(300);
$("#Bottom").load(adres,function(){$("#BottomLoader").fadeOut(800);});
}
The problem is it only works for the first time. Once the #Bottom div is loaded with some ...
I have a simple one text input form that when submitted, needs to fetch a php file (passing the inputs to the file) and then take the result (just a line of text) and place it in a div and fade that div into view.
here is what i have now
<form id=create method=POST action=create.php>
<input type=text name=url>
<input type="submit" valu...
Hi all,
I have my website getting a value as a result of an ajax call. After that, I would like to insert that result (a string) into a tag. However, I would like to insert that result in a way that (1) it must have opacity = 0, then (2) it will slideDown() so the whole content list being pushed down using animation, and finally (3) cha...
I have this code wich works with no errors when sending "simple text" through Ajax post.
But when i want to send "html" to the server, my code will fail sometimes.
var message = tinyMCE.activeEditor.getContent();
if(message.length > 0)
{
message = Base64.encode(message);
...
We have an old page written in Classic ASP that makes calls to an existing .asp page through the Prototype library's Updater object.
This call passed some query string parameters in w/ the request and received a list of params to update as well as a block of HTML/JS to render onto the main asp page.
It seems that the page lifecycle c...
Back in the glory days of ASP.NET 1.1, I bought "Developing Microsoft ASP.NET Server Controls and Components" by Nikhil Kothari and Vandana Datye. I loved this book -- I read it and read it and developed all kinds of cool controls using it. I got my money's worth -- you should see the book, it's totally destroyed. It was probably the ...
HI all,
I am currently tinkering with this pre-authored ajax/php image uploading script, but after almost 2 days of trying to figure out why it throws 403 forbidden error(You don't have permission to access /ajaxupload.php
on this server), I am out of options but to ask the gurus here.
I suspect it has something to do with my hosts ser...
hi
Some operations are time costly and it takes long time while waiting them to finish.
Sometimes timeout occurs.
I want to use a real time progress bar, so I want to show the status to the user and also I want to prevent timeout. Which technologies must I use? JS, Ajax, multithread or both? and how can I iplement this?
Please advice.
...
Hi, I've been trying to implement a dynamic multi-model form with accepts_nested_attributes_for in my rails application. I've been following Eloy Duran's complex-forms example that shows a 2 level implementation, but I've been trying to expand this to 3 levels. Is there support with accepts_nested_attributes_for for a 3 level form? Ca...
I am using jQuery load function to load the HTML response of an aspx page. I call the page by appending querystring parameters to the end. I have a problem though. I have a checkbox list (multi selectable) and couldn't figure out how to send these selections. If it was server side, I would make a custom class carrying all the information...