Quantcast
Channel: Progress bar
Browsing latest articles
Browse All 14 View Live

Re: Progress bar

If you want the seconds that have elapsed, then use setInterval on the client.  I'm not sure why you want to ping the server.  Besides, I believe file upload is a blocking request.Consider visiting the...

View Article



Re: Progress bar

Hi again:I use the timer control to do poner_reloj each 5 seconds<asp:Timer id="tmreloj" Interval="5000" OnTick="poner_reloj" runat="server"></asp:Timer>I'd like to know the number of...

View Article

Re: Progress bar

The callback delegate return void not a boolean.https://msdn.microsoft.com/en-us/library/system.threading.timercallback(v=vs.110).aspxvolar5That is what I want: to show the time each second, only...

View Article

Re: Progress bar

Hi all:So I understand that the method poner_reloj is executed second by second. The code stops for a second. I don't know why is the error given at second lineThat is what I want: to show the time...

View Article

Re: Progress bar

In your example, setting a timer on the server just makes the client wait until the server code completes its operation and sends a response.Traditionally. the issue with a file upload progress bar is...

View Article


Re: Progress bar

Hi again:I looked at system.threading.I do Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim tm As Timer = New Timer(poner_reloj, Nothing, 0, 1000) End...

View Article

Re: Progress bar

Hi all:I want to do a customized progress bar with a table while uploading.I have this html<%@ Page CodeFile="ejemplo.aspx.vb" Inherits="codigo" %><table id="tblbarraprogreso" border='0'...

View Article

Re: Progress bar

Hi,You can use simple javascript code to upload file from clientside.your aspx page<form id="form1" runat="server"><div style = "padding:40px"><asp:FileUpload ID="FileUpload1"...

View Article


Progress bar

Hi all:In some of my pages I allow to upload files with fileupload. I show the message 'uploading files...'.Now I want to show a progress bar with the name of file uploading and the percentage left...

View Article


Re: Progress bar

Hi again:The 'subir' button is the button for uploading. I want to execute the uptimer only when the button is clicked. At this time I know the file to upload and the contentlength of it.How to do...

View Article

Re: Progress bar

Hi:Mgebhard, the upload is a blocking request, that means I can do nothing while it is uploading, the timer doesn't executeI have this codeImports Microsoft.VisualBasic Imports System Imports...

View Article

Re: Progress bar

Hi:I resolved that. Now I put the table inside an updatepanl, so I update this piece instead of the whole page. Now it does not work I don`t know wythis is the codeImports Microsoft.VisualBasic Imports...

View Article

Re: Progress bar

Hi:I have this code Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 'Dim tm As Timer = New Timer(poner_reloj, Nothing, 0, 100) 'tdbarra1.Attributes("Style") =...

View Article


Re: Progress bar

Hi volar5:I have created a demo based on your code above and made some changes to achieve your need. I have tested it on my client and it works.In your front page, you need to place the...

View Article
Browsing latest articles
Browse All 14 View Live


Latest Images