Click here to Skip to main content
15,898,036 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: reverse timer in javascript Pin
Gregory Gadow12-Apr-10 3:49
Gregory Gadow12-Apr-10 3:49 
QuestionHow i get start with the Chat Application like gmail or facebook Chat Style ??? Pin
Rameez Raja12-Apr-10 0:29
Rameez Raja12-Apr-10 0:29 
Questionhow to validate emailids with regular expression validator Pin
developerit11-Apr-10 23:04
developerit11-Apr-10 23:04 
AnswerRe: how to validate emailids with regular expression validator Pin
Brij11-Apr-10 23:15
mentorBrij11-Apr-10 23:15 
AnswerRe: how to validate emailids with regular expression validator Pin
Sandesh M Patil11-Apr-10 23:31
Sandesh M Patil11-Apr-10 23:31 
AnswerRe: how to validate emailids with regular expression validator Pin
Gregory Gadow12-Apr-10 3:54
Gregory Gadow12-Apr-10 3:54 
QuestionPrinting Image in asp dot net Pin
Tufail Ahmad11-Apr-10 22:27
Tufail Ahmad11-Apr-10 22:27 
AnswerRe: Printing Image in asp dot net Pin
Sandesh M Patil11-Apr-10 23:20
Sandesh M Patil11-Apr-10 23:20 
You know 'window.print()' function will print the HTML content of the current page in the browser window.

Put the image in a DIV tag and then use the following code. The content of the DIV is written to a new window and then printed in this code.,

<script type="text/javascript">    
    function ClientSidePrint(idDiv)     
    {           
        var w = 600;          
        var h = 400;          
        var l = (window.screen.availWidth - w)/2;          
        var t = (window.screen.availHeight - h)/2;                       var sOption="toolbar=no,location=no,directories=no,menubar=no,
scrollbars=yes,width=" + w + ",height=" + h + ",left=" + l + ",top="+t;        
// Get the HTML content of the div      
 var sDivText = window.document.getElementById(idDiv).innerHTML;      
// Open a new window      
var objWindow = window.open("", "Print", sOption);    
// Write the div element to the window    
objWindow.document.write(sDivText);    
objWindow.document.close();      
// Print the window                      
objWindow.print();      
// Close the   window    
objWindow.close();                     } 
</script>

Questionhow to maintain the state of previous page in gridview Pin
developerit11-Apr-10 21:00
developerit11-Apr-10 21:00 
AnswerRe: how to maintain the state of previous page in gridview Pin
Arindam Tewary11-Apr-10 21:07
professionalArindam Tewary11-Apr-10 21:07 
GeneralRe: how to maintain the state of previous page in gridview Pin
developerit11-Apr-10 21:50
developerit11-Apr-10 21:50 
GeneralRe: how to maintain the state of previous page in gridview Pin
michaelschmitt12-Apr-10 3:32
michaelschmitt12-Apr-10 3:32 
AnswerRe: how to maintain the state of previous page in gridview Pin
Abhijit Jana11-Apr-10 21:21
professionalAbhijit Jana11-Apr-10 21:21 
QuestionASP.NET Server Controls are not displaying in my website Pin
S Jayakar11-Apr-10 16:12
S Jayakar11-Apr-10 16:12 
AnswerRe: ASP.NET Server Controls are not displaying in my website Pin
Venkatesh Mookkan11-Apr-10 16:26
Venkatesh Mookkan11-Apr-10 16:26 
GeneralRe: ASP.NET Server Controls are not displaying in my website Pin
S Jayakar11-Apr-10 16:37
S Jayakar11-Apr-10 16:37 
GeneralRe: ASP.NET Server Controls are not displaying in my website Pin
Venkatesh Mookkan11-Apr-10 17:16
Venkatesh Mookkan11-Apr-10 17:16 
AnswerRe: ASP.NET Server Controls are not displaying in my website Pin
S Jayakar12-Apr-10 4:27
S Jayakar12-Apr-10 4:27 
QuestionAnyone know of asp.net software/tutorial for creating a video library? Pin
Goalie3511-Apr-10 10:37
Goalie3511-Apr-10 10:37 
AnswerRe: Anyone know of asp.net software/tutorial for creating a video library? Pin
Not Active11-Apr-10 13:13
mentorNot Active11-Apr-10 13:13 
QuestionHow can I get the correct row in Repeater from LinkButton click? Pin
DeepToot11-Apr-10 7:00
DeepToot11-Apr-10 7:00 
AnswerRe: How can I get the correct row in Repeater from LinkButton click? Pin
DeepToot11-Apr-10 14:02
DeepToot11-Apr-10 14:02 
QuestionHow to implement message queing in C# Pin
EMMADO11-Apr-10 6:16
EMMADO11-Apr-10 6:16 
AnswerRe: How to implement message queing in C# Pin
Not Active11-Apr-10 7:00
mentorNot Active11-Apr-10 7:00 
GeneralRe: How to implement message queing in C# Pin
EMMADO12-Apr-10 2:35
EMMADO12-Apr-10 2:35 

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.