Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8310653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T19:32:19+00:00 2026-06-08T19:32:19+00:00

i used the examples given in this link here are my code for the

  • 0

i used the examples given in this link

here are my code for the .aspx page

<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jqueryui.css"
rel="stylesheet" type="text/css" />

<script type="text/jscript" src="http://ajax.googleapis.com/ajax/libs/jquery1.5/jquery  .min.js"></script>

<script type="text/jscript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

<script type="text/jscript">
$(document).ready(function() {
$("#progressbar").progressbar({ value: 37 });
});
</script>

</asp:Content>

and the div for the progress bar is this one

<div style="margin-left: 10px; margin-right: 10px;" id="progressbar">    </div>

i tried to follow the instructions given on the source page but nothing worked. can you tell me what i am missing here? thanx in advance. (Fixed this part.i made a mistake at placing my contntentplaceholder)

EDIT: how can i change the value in a way so that it animates when i press a button…. the button’s code in the page is as follows :

<asp:Button ID="btnConfirm" CssClass="button" SkinID="Common" runat="server"Text="Confirm"OnClick="btnConfirm_Click" />
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T19:32:20+00:00Added an answer on June 8, 2026 at 7:32 pm

    Try this:

    <script type="text/jscript">
    jQuery(document).ready(function() {
    jQuery("#progressbar").progressbar({ value: 37 });
    });
    </script>
    

    $ is also used by asp.net for its own clientside javascript.

    Consider us jQuery.noConflict()

    You could encapsulate your jQuery code like this:

    jQuery.noConflict();
    (function($) { 
      $(function() {
        $(document).ready(function() {
        $("#progressbar").progressbar({ value: 37 });
        // more code using $ as alias to jQuery
      });
    })(jQuery);
    

    EDIT:
    To update the value surround your content above and the button with an UpdatePanel.

    Refer how to use UpdatePanels

    Assign the Progress percentage to an asp literal.

    jQuery.noConflict();
    (function($) { 
      $(function() {
        $(document).ready(function() {
        $("#progressbar").progressbar({ value: <asp:Literal runat="server" ID="ProgressPercentage" /> });
        // more code using $ as alias to jQuery
      });
    })(jQuery);
    

    On button click

    ProgressPercentage.Text = progress.ToString();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In some ASP.NET examples i see that events are used with delegates like this
I have used this code (kind of tutorial) at http://code.google.com/p/gwt-examples/wiki/gwt_hmtl5 ... In this code,
Update : I just found this documentation page . Wish there was a link
In the Android SDK documentation, all of the examples used with the @drawable/my_image xml
All the examples I have seen where the PropertyPlaceHolderConfigurer is used seem to be
I have come across a couple of examples of MOVF being used without the
I've seen in a few iPhone examples that attributes have used an underscore _
I used this example (http://reecon.wordpress.com/2010/04/25/uploading-files-to-http-server-using-post-android-sdk/) to upload file from android device to server, it
I've used this example to to implement some sort of guestbook, only I'm using
Consider this classic example used to explain what not to do with forward declarations:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.