Click here to Skip to main content
15,923,015 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralHide Print Dialog Window Pin
Archana New to Dotnet20-Dec-07 23:01
Archana New to Dotnet20-Dec-07 23:01 
GeneralRe: Hide Print Dialog Window Pin
N a v a n e e t h21-Dec-07 19:25
N a v a n e e t h21-Dec-07 19:25 
GeneralUsing asp:Button instead of input type="Button" Pin
Blumen20-Dec-07 22:29
Blumen20-Dec-07 22:29 
GeneralRe: Using asp:Button instead of input type="Button" Pin
Paddy Boyd20-Dec-07 23:04
Paddy Boyd20-Dec-07 23:04 
GeneralRe: Using asp:Button instead of input type="Button" Pin
Blumen21-Dec-07 0:19
Blumen21-Dec-07 0:19 
GeneralRe: Using asp:Button instead of input type="Button" Pin
Paddy Boyd21-Dec-07 0:58
Paddy Boyd21-Dec-07 0:58 
GeneralRe: Using asp:Button instead of input type="Button" Pin
Blumen21-Dec-07 1:06
Blumen21-Dec-07 1:06 
GeneralRe: Using asp:Button instead of input type="Button" Pin
Paddy Boyd21-Dec-07 2:24
Paddy Boyd21-Dec-07 2:24 
blumenhause wrote:
Correct me if I'm wrong, asp:Button is a server side control, INPUT Button is a HTML client side control, right?


Yes, essentially. But also no - both can postback to the server, or perform on the client as you need.

The onClientClick event on the server button will run some client code and then postback to the server, UNLESS the client code returns a false value. e.g.

function myJSFunction()
{
//Do something
return false;
}

ASP button client click event:

"return myJSFunction();"

Will not postback.

The reason that your div keeps coming back, is that the page is reloaded every postback.
GeneralRe: Using asp:Button instead of input type="Button" Pin
Blumen23-Dec-07 20:08
Blumen23-Dec-07 20:08 
Generalhaving a problem with the word object when i run from sever Pin
koolprasad200320-Dec-07 22:21
professionalkoolprasad200320-Dec-07 22:21 
GeneralRe: having a problem with the word object when i run from sever Pin
pmarfleet20-Dec-07 22:38
pmarfleet20-Dec-07 22:38 
GeneralCross browser Pin
bhattiprolu20-Dec-07 21:59
bhattiprolu20-Dec-07 21:59 
GeneralRe: Cross browser Pin
Deepak the Cool20-Dec-07 23:19
Deepak the Cool20-Dec-07 23:19 
GeneralRe: Cross browser Pin
Gandalf_TheWhite21-Dec-07 0:42
professionalGandalf_TheWhite21-Dec-07 0:42 
QuestionHow to print in asp.net Pin
Deepthy.P.M20-Dec-07 21:49
Deepthy.P.M20-Dec-07 21:49 
AnswerRe: How to print in asp.net Pin
Abhijit Jana20-Dec-07 21:55
professionalAbhijit Jana20-Dec-07 21:55 
Generalmove Folder Pin
AnhTin20-Dec-07 20:01
AnhTin20-Dec-07 20:01 
GeneralRe: move Folder Pin
Christian Graus20-Dec-07 20:21
protectorChristian Graus20-Dec-07 20:21 
GeneralRe: move Folder Pin
Abhijit Jana20-Dec-07 20:59
professionalAbhijit Jana20-Dec-07 20:59 
GeneralRe: move Folder Pin
AnhTin20-Dec-07 21:48
AnhTin20-Dec-07 21:48 
Generaltriggers in .net Pin
Member 387988120-Dec-07 19:56
Member 387988120-Dec-07 19:56 
GeneralRe: triggers in .net Pin
Christian Graus20-Dec-07 20:30
protectorChristian Graus20-Dec-07 20:30 
GeneralRe: triggers in .net Pin
Christian Graus20-Dec-07 20:30
protectorChristian Graus20-Dec-07 20:30 
GeneralRe: triggers in .net Pin
Venkatesh Mookkan20-Dec-07 21:19
Venkatesh Mookkan20-Dec-07 21:19 
Questioncompare validator Pin
KarthickRamalingam20-Dec-07 19:39
KarthickRamalingam20-Dec-07 19:39 

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.