Click here to Skip to main content
15,886,519 members

Comments by MemberCva (Top 12 by date)

MemberCva 23-Mar-12 3:17am View    
Thanks MaulikDusara,

This is my code i have used here total is the no of scripts to be inserted.

RadProgressContext progress = RadProgressContext.Current;
progress.Speed = "N/A";

for (int i = 0; i < total; i++)
{
progress.PrimaryTotal = 1;
progress.PrimaryValue = total;
progress.PrimaryPercent = 100;

progress.SecondaryTotal = total;
progress.SecondaryValue = i;
progress.SecondaryPercent = i;

progress.CurrentOperationText = Filename + " Step " + i.ToString();

if (!Response.IsClientConnected)
{
//Cancel button was clicked or the browser was closed, so stop processing
break;
}

progress.TimeEstimated = (total - i) * 100;
//Stall the current thread for 0.1 seconds
System.Threading.Thread.Sleep(100);
}


The scripts are inserted to db in another loop as u mentioned as datarows .
what else i have to do pls correct my codeing,

thanks in advance.
Siva
MemberCva 23-Mar-12 3:10am View    
Thanks Clifford Nelson ,

How can i implement this in asp.net.
MemberCva 8-Oct-11 7:57am View    
thanks for your reply...........
the examples in demo as given static.........
i have to achive it dynamically......
warm regards.....
Cva
MemberCva 28-Sep-11 0:37am View    
thanks yar....
while executing my query igot he result incorrect syntax near '('.....
my query is
select MAX ( substring (ID,2(2+1),len(ID)-1) ) from Table1

2+1 here 2 mentions the no of alphabets am using in that column, AB is my alphabet in that column.....

thanks in advance.....

with warm regards....
Cva.....
MemberCva 28-Sep-11 0:32am View    
thanks sachin....

i got the result by ur query but my need is to get the result dynamically.....

thanks in advance.....
with warm regards...
Cva....