Click here to Skip to main content
16,005,178 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow To Generate Report Faster Pin
fajrif31-Dec-06 18:29
fajrif31-Dec-06 18:29 
AnswerRe: How To Generate Report Faster Pin
Colin Angus Mackay1-Jan-07 4:43
Colin Angus Mackay1-Jan-07 4:43 
GeneralRe: How To Generate Report Faster Pin
Amit Kumar G1-Jan-07 16:33
Amit Kumar G1-Jan-07 16:33 
AnswerRe: How To Generate Report Faster Pin
Pete O'Hanlon1-Jan-07 22:33
mvePete O'Hanlon1-Jan-07 22:33 
Questionnobody knows my question: How can I show my error page in new page and old page should steel shows old data? Pin
m.rastgar31-Dec-06 17:49
m.rastgar31-Dec-06 17:49 
AnswerRe: nobody knows my question: How can I show my error page in new page and old page should steel shows old data? Pin
Pete O'Hanlon1-Jan-07 22:54
mvePete O'Hanlon1-Jan-07 22:54 
QuestionScrollbar position on a panel web server control Pin
John Strudwick31-Dec-06 6:22
John Strudwick31-Dec-06 6:22 
AnswerRe: Scrollbar position on a panel web server control Pin
m.rastgar31-Dec-06 17:57
m.rastgar31-Dec-06 17:57 
yourpanleid.scrollTop, yourpanelid.scrollLeft.
for your panel id, refer your page html which is rendered.
note, these two methods are client side methods.
you can save them in a hidden field. i save them in a hidden textbox by scrollchange() method. and set them by changescroll() method:
function scrollchange()
{
document.getElementById("txtScroll").value=document.body.scrollTop;
document.getElementById("txtScroll").value+=";"+document.body.scrollLeft;
}

function changescroll()
{
if(document.getElementById("txtScroll").value != "")
{
parts = document.getElementById("txtScroll").value.split(";");
document.body.scrollTop = parseInt(parts[0]);
document.body.scrollLeft = parseInt(parts[1]);
}
}

Thanks
Rastgar
GeneralAll done now - many thanks - did it like this Pin
John Strudwick1-Jan-07 3:57
John Strudwick1-Jan-07 3:57 
QuestionGradient Table Background??? Pin
code-frog31-Dec-06 4:46
professionalcode-frog31-Dec-06 4:46 
AnswerRe: Gradient Table Background??? Pin
Grapes-R-Fun31-Dec-06 10:11
Grapes-R-Fun31-Dec-06 10:11 
GeneralRe: Gradient Table Background??? Pin
code-frog2-Jan-07 9:11
professionalcode-frog2-Jan-07 9:11 
GeneralRe: Gradient Table Background??? Pin
Grapes-R-Fun2-Jan-07 9:53
Grapes-R-Fun2-Jan-07 9:53 
GeneralRe: Gradient Table Background??? Pin
code-frog2-Jan-07 10:31
professionalcode-frog2-Jan-07 10:31 
GeneralRe: Gradient Table Background??? Pin
Grapes-R-Fun2-Jan-07 10:56
Grapes-R-Fun2-Jan-07 10:56 
GeneralRe: Gradient Table Background??? Pin
code-frog2-Jan-07 10:42
professionalcode-frog2-Jan-07 10:42 
GeneralRe: Gradient Table Background??? Pin
Grapes-R-Fun2-Jan-07 11:00
Grapes-R-Fun2-Jan-07 11:00 
Questionfile path Pin
netJP12L30-Dec-06 20:21
netJP12L30-Dec-06 20:21 
AnswerRe: file path Pin
Grapes-R-Fun31-Dec-06 10:23
Grapes-R-Fun31-Dec-06 10:23 
Questioncan i dynamically set flash movie paramter Pin
keroed_edmond30-Dec-06 19:19
keroed_edmond30-Dec-06 19:19 
AnswerRe: can i dynamically set flash movie paramter Pin
Grapes-R-Fun31-Dec-06 10:05
Grapes-R-Fun31-Dec-06 10:05 
GeneralRe: can i dynamically set flash movie paramter Pin
keroed_edmond2-Jan-07 4:04
keroed_edmond2-Jan-07 4:04 
GeneralRe: can i dynamically set flash movie paramter Pin
Grapes-R-Fun2-Jan-07 7:18
Grapes-R-Fun2-Jan-07 7:18 
GeneralRe: Someone has written a special control to embed Flash! Take a look Pin
Grapes-R-Fun2-Jan-07 7:20
Grapes-R-Fun2-Jan-07 7:20 
GeneralRe: it worked just fine for me! Pin
Grapes-R-Fun2-Jan-07 7:38
Grapes-R-Fun2-Jan-07 7:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.