Click here to Skip to main content
15,917,329 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: webhost -- your opinion Pin
Neeraj Arora14-Feb-07 18:14
Neeraj Arora14-Feb-07 18:14 
AnswerRe: webhost -- your opinion [modified] Pin
Michael Sync14-Feb-07 20:02
Michael Sync14-Feb-07 20:02 
Questionsession expires after file update... Pin
PandemoniumPasha14-Feb-07 17:16
PandemoniumPasha14-Feb-07 17:16 
AnswerRe: session expires after file update... Pin
Neeraj Arora14-Feb-07 18:17
Neeraj Arora14-Feb-07 18:17 
GeneralRe: session expires after file update... Pin
PandemoniumPasha14-Feb-07 20:34
PandemoniumPasha14-Feb-07 20:34 
QuestionQuestion about HeaderStyle in GridView Pin
xiao bin bin14-Feb-07 11:43
xiao bin bin14-Feb-07 11:43 
AnswerRe: Question about HeaderStyle in GridView Pin
Shajeel14-Feb-07 19:03
Shajeel14-Feb-07 19:03 
GeneralRe: Question about HeaderStyle in GridView Pin
xiao bin bin14-Feb-07 19:44
xiao bin bin14-Feb-07 19:44 
GeneralRe: Question about HeaderStyle in GridView Pin
Shajeel14-Feb-07 20:02
Shajeel14-Feb-07 20:02 
QuestionLabels and master pages Pin
mintajalepi14-Feb-07 10:19
mintajalepi14-Feb-07 10:19 
Questionasp.net-text editor Pin
luckyve14-Feb-07 8:18
luckyve14-Feb-07 8:18 
AnswerRe: asp.net-text editor Pin
Sylvester george14-Feb-07 19:26
Sylvester george14-Feb-07 19:26 
AnswerRe: asp.net-text editor Pin
M A A Mehedi Hasan14-Feb-07 19:59
M A A Mehedi Hasan14-Feb-07 19:59 
QuestionPage Classes Pin
DanB198314-Feb-07 7:41
DanB198314-Feb-07 7:41 
QuestionASP.NET 2.0 button click to perform 2 actions (client side e-mail then redirect to another page) Pin
bubberz14-Feb-07 6:31
bubberz14-Feb-07 6:31 
AnswerRe: ASP.NET 2.0 button click to perform 2 actions (client side e-mail then redirect to another page) Pin
Jesse Squire14-Feb-07 7:34
Jesse Squire14-Feb-07 7:34 
What you may consider doing is adding a client-side click handler that opens the mailto link in a new window. So long as you don't return false from the client event, then your server-side Click event will still fire so that you can call your redirect there. For example:

  <asp:Button  ID = "test"

                    OnClick = "Button_Click"

                    OnClientClick = "window.open('mailto:user@server.ext'); return true;"

                    Text = "Click Me"

                    runat = "server"/>



Hope that helps. Smile | :)

  --Jesse

GeneralRe: ASP.NET 2.0 button click to perform 2 actions (client side e-mail then redirect to another page) Pin
Neeraj Arora14-Feb-07 17:23
Neeraj Arora14-Feb-07 17:23 
QuestionNo data being returned by the stored procedure. Pin
Quecumber25614-Feb-07 3:59
Quecumber25614-Feb-07 3:59 
AnswerRe: No data being returned by the stored procedure. Pin
Jesse Squire14-Feb-07 4:10
Jesse Squire14-Feb-07 4:10 
GeneralRe: No data being returned by the stored procedure. Pin
Quecumber25614-Feb-07 4:24
Quecumber25614-Feb-07 4:24 
AnswerRe: Now I getting a different error. Pin
Quecumber25614-Feb-07 5:00
Quecumber25614-Feb-07 5:00 
GeneralRe: Now I getting a different error. Pin
Colin Angus Mackay14-Feb-07 5:13
Colin Angus Mackay14-Feb-07 5:13 
GeneralRe: Now I getting a different error. Pin
Quecumber25614-Feb-07 6:06
Quecumber25614-Feb-07 6:06 
GeneralRe: Now I getting a different error. Pin
Bassam Saoud14-Feb-07 5:17
Bassam Saoud14-Feb-07 5:17 
GeneralRe: Now I getting a different error. Pin
Quecumber25614-Feb-07 6:06
Quecumber25614-Feb-07 6:06 

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.