JQuery :: Classic ASP And Alidation Plug-in?
Oct 17, 2010
Basically I am putting together a registration form for my site using, ASP, Javascript/AJAX, jQuery.
I can't find any reference to using the Validation Plugin and ASP anywhere. Here is what I have so far.
jQuery validation:
<script type="text/javascript">
$(document).ready(function(){
$("#frmRegister").validate({
[Code]...
View 11 Replies
ADVERTISEMENT
Mar 8, 2010
I'm using jquery to pass trough data to another page where I want to insert and delete a record. But the problem is that jquery only inserts or deletes the records and not both together. I use following code:
For jquery:
$(document).ready(function(){
$("#btnAddPayment").click(payment);
});
//example 1
function payment(){
$.ajax({
type:"POST",
url: "acceptPaymentExecute.asp",
dataType: "application/x-www-form-urlencoded", .....
objRS = objConn.execute(strInsertPayment)
objRS = objConn.execute(strDeleteMemberPayment)
objRS.close()
set objRS = nothing
objConn.close()
set objConn = nothing
The queries work but not together. If I comment the insert statement, my page executes the delete statement. I already tried to call another object for my delete statement but it does the same.
View 4 Replies
View Related
Dec 16, 2010
I'm trying to convert a html form to use jQuery. The submit asp page works just fine via standard html post. Yet I can't figure out how to use jQuery
//dataString = data from the form
$.ajax({
type:'POST',
dataType: "application/x-www-form-urlencoded",
[Code]....
View 8 Replies
View Related
Jun 25, 2011
I found this post: [URL] It explains exactly what I want to do. The person who had the problem seemed to have sorted it out but as my knowledge is not to great I am not to sure what he is getting at. I tried various things but to no avail. All I want to do is return data to a calling javascript using type get and datatype jsonp. If I simply Response.Write "[(""id"": ""123""}]" then nothing happens. So whatever the thread I revered to above is doing it seems to be going in the right direction.
View 6 Replies
View Related
Jul 18, 2011
I have an application that is using Classic ASP, SQL server and cookies. But unless the user goes all the way through the application and the details are removed, they stay in the database.
How can I detect when they close the browser or move away to another web url. I have several pages in my app, so I dont want any unload event firing when I change pages.
Only when I move to another website completely or close the browser.
All the code I've seen on the net so far will fire if i change url's. Oh and I need to be able to access the Session's data in order to remove it from the database.
View 1 Replies
View Related
Mar 6, 2010
I just started a job doing classic asp and only have experiance with asp.net and no java scrpt
How can i debug javascript in classic asp pages?
i have no clue so If you know, please give baby steps that are idiot proof :thumbsup:
View 3 Replies
View Related
Jul 23, 2005
I want to use a select object in asp and have the user pick
something from this select and have javascript open a window fired by
an event. Once the new window is open it displays another select with
data based on what was picked in the first window. Once a choice is
made in the second window, it allow users to click a submit button and
pass back the chosen value to the calling window. Code:
View 1 Replies
View Related
Oct 14, 2011
What's currently the best modal plug-in available?
View 1 Replies
View Related
Aug 9, 2009
Just getting started with cookies this afternoon and wondering what plug-in everyone is using these days?
View 2 Replies
View Related
Jun 6, 2010
$("#myform").validate({
What does this line? why it checks to see if the value of attribute "name" equals to "fname"
error.insertAfter("#lastname");
View 2 Replies
View Related
May 21, 2011
I am using on my site image slider and a drop-down menu.On different pages they work pretty good, but when i put them on the same page i am loosing drop down menu.
View 2 Replies
View Related
Nov 1, 2011
I really need this plug-in. I think I did everything exactly by the instructions,but it doesn't seem to work Can anyone take a look at the code and tell me what I did wrong?
View 7 Replies
View Related
Jun 3, 2009
The tablesorter plug-in by Christian Bach has what I think are a couple of bugs/anomalies. 1) a column that starts with a zero is not identified as a 'digit'. I think it should be. 2) a column that starts with an IP address that looks like 192.168.1.1 or 1.127.77.1 -- that is any IP with a single digit is not identified as an IP address because the "is" function only looks for d{2,3} instead of d{1,3}. 3) some of the examples in the source code are wrong. Otherwise a great plug-in and worth the effort to debug.
View 1 Replies
View Related
Jun 27, 2010
I'm using the divSlideShow plug-in on my site; however, I want to be able to call a given "slide" within the slideshow via a button located outside the slideshow container. So instead of manipulating the slideshow via the automatically set left and right arrows, or numbers, I want to use my own buttons.
View 1 Replies
View Related
Dec 27, 2011
I'm far from a JQ guru but I built a page using two plug ins (slides and pagination) If I run just the pagination plug in ( for the images thumbnails ) and the slides plug in ( WITHOUT) the function code both seem to work OK. But I need the slide function code for the slides plug in to rotate the images as well and when I do this I get a grey area displaying the image numbers in between the div containing the slide and the footer, rendering the thumbnails not to work as well as the footer pop up menu does not function either see links below
http:[url]....
slides - images display fine / thumbnails work ( no function for rotating slides )
viewport / footer - working
http://dagwaremedia.com/ScotchSodaFiles/index.htm
slides - images display fine / rotating images work ( with function for rotating slides )
thumbnails DO NOT WORK
viewport - DOES NOT WORK.
why all of these plug ins do not work all together on this page?
View 7 Replies
View Related
Aug 31, 2010
How do I combine two plug-ins in the same HTML page? Here is my code:
<script type="text/javascript" src="jquery/jquery-1.4.2.js"> </script>
<script type="text/javascript" src="jquery.innerfade/js/jquery.innerfade.js"> </script>[code]....
I'm trying to use the fade in effect and the validate plugins. They each work independently, but when I combine them, neither one works.
View 2 Replies
View Related
Feb 25, 2011
Back in October, a new jQuery globalization plug-in from Microsoft was announced on the jQuery blog, and seems to live over in this github repo. In the blog post, it says it will be "available soon" but I'm not yet seeing it under plugins.j[URL].. There's clearly still work being done on it, though, and I can't imagine anyone has lost enthusiasm. Having a standard i18n mechanism with jQuery is very exciting indeed. (And I understand there's an effort to make this same feature set available in a library-agnostic manner as well, which is even more exciting, just in the sense of making the web better for everyone.)
Does anyone know the status and timeline for this work? I'm not seeing that in the github readme. There would seem to be only two outstanding issues (as I write this).
View 1 Replies
View Related
Nov 13, 2009
I need some help in figuring out how to install this jQuery plug-in on my website code...
I have absolutely no experience with JavaScript.
View 2 Replies
View Related
Aug 7, 2010
I am using spinbox plug-in. Its working well.
But it is not working in dynamic text boxes
View 1 Replies
View Related
Aug 9, 2011
Ok here is the problem I am running the cycle plugin on a webiste I am currently working on. It works in IE9 with and without compatability modeBUT in FF and Chrome no joy!!! The place where my slideshow is supposed to be is blank white. See Site [URL] Not sure what the heck is going on anymore. I had a lot of problems with this site but i fixed 90% of them by reworking my css.
View 1 Replies
View Related
Mar 9, 2011
I had to change line 313 from: doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
to: doc = io.document ? io.document : io.contentWindow ? io.contentWindow.document : io.contentDocument;
in order for the Form Plug-In to work across Firefox, Chrome, Safari, and IE.
The difference is just in the order of find the document variable. IE9 caused an Access Denied on io.contentWindow.
View 3 Replies
View Related
May 23, 2009
I have recently noticed that version 1.3 of the jQuery Tooltip Plug-in does not work with jQuery's version 1.3.2. Is there a patch available? Is there one on the way?
View 3 Replies
View Related
Aug 26, 2009
I stumbled over a very elegant way to select from a large item list on[URL].. Could anybody direct me to a jquery plug-in? It would be great to replace my drop-down menus with a more appealing menu.
View 3 Replies
View Related
Sep 24, 2008
I'm using validation plug-in in our application for customers fromRussia. I need to set russian messages for all customers from allplaces in the world. How can i do that? Messages are in "localzation/
View 5 Replies
View Related
Dec 7, 2010
No matter what I try I can't seem to set default messages values for the validation plugin.Among dozens of other things I've tried:
jQuery.validator.setDefaults({
debug:true,
errorClass:'test-error',
[code]....
View 1 Replies
View Related
Oct 21, 2010
I am working wiht this JQuery plug in that now one of my clients wants to turn it into a slideshow feature. I am not that familiar with JQuery plug ins so I wanted to get some input from some of you.
On the header of my html page:
Code:
$(document).bgStretcher({
images: ['1.jpg', '2.jpg', '3.jpg', '4.jpg'],
imageWidth: 1668, imageHeight: 1035, nextSlideDelay: 3000, slideShowSpeed: 4000
});
I was able to add a click handler to trigger the a function on the plugin called loadslide().
Code:
$(document).ready(function ($) {
$('.slideNo').each(function (i) {
$(this).click(function () {
loadSlide(i);
[Code].....
View 2 Replies
View Related