Click here to Skip to main content
15,905,071 members
Home / Discussions / C#
   

C#

 
JokeRe: WCF service as Windows Service Pin
TwilightEva1-Jun-12 4:05
TwilightEva1-Jun-12 4:05 
AnswerRe: WCF service as Windows Service Pin
jschell1-Jun-12 3:46
jschell1-Jun-12 3:46 
GeneralRe: WCF service as Windows Service Pin
TwilightEva1-Jun-12 4:04
TwilightEva1-Jun-12 4:04 
GeneralRe: WCF service as Windows Service Pin
taha bahraminezhad Jooneghani3-Jun-12 2:02
taha bahraminezhad Jooneghani3-Jun-12 2:02 
QuestionAUDIO PROBLEM Pin
timmy1831-May-12 12:02
timmy1831-May-12 12:02 
AnswerRe: AUDIO PROBLEM Pin
PIEBALDconsult31-May-12 12:08
mvePIEBALDconsult31-May-12 12:08 
AnswerRe: AUDIO PROBLEM Pin
Abhinav S31-May-12 16:31
Abhinav S31-May-12 16:31 
AnswerRe: AUDIO PROBLEM Pin
OriginalGriff31-May-12 21:17
mveOriginalGriff31-May-12 21:17 
GeneralRe: AUDIO PROBLEM Pin
Luc Pattyn1-Jun-12 3:04
sitebuilderLuc Pattyn1-Jun-12 3:04 
GeneralRe: AUDIO PROBLEM Pin
OriginalGriff1-Jun-12 3:48
mveOriginalGriff1-Jun-12 3:48 
QuestionNEW Pin
timmy1831-May-12 11:51
timmy1831-May-12 11:51 
AnswerRe: NEW Pin
Dave Kreskowiak31-May-12 13:06
mveDave Kreskowiak31-May-12 13:06 
GeneralRe: NEW Pin
PIEBALDconsult31-May-12 14:51
mvePIEBALDconsult31-May-12 14:51 
AnswerRe: NEW Pin
OriginalGriff31-May-12 21:17
mveOriginalGriff31-May-12 21:17 
AnswerRe: new Pin
Paul Conrad1-Jun-12 13:56
professionalPaul Conrad1-Jun-12 13:56 
Questiondebugging vs 2010 C#.net Pin
sc steinhayse31-May-12 11:23
sc steinhayse31-May-12 11:23 
AnswerRe: debugging vs 2010 C#.net Pin
Dave Kreskowiak31-May-12 13:07
mveDave Kreskowiak31-May-12 13:07 
AnswerRe: debugging vs 2010 C#.net Pin
Richard MacCutchan31-May-12 21:36
mveRichard MacCutchan31-May-12 21:36 
GeneralRe: debugging vs 2010 C#.net Pin
sc steinhayse1-Jun-12 17:31
sc steinhayse1-Jun-12 17:31 
GeneralRe: debugging vs 2010 C#.net Pin
Richard MacCutchan1-Jun-12 22:25
mveRichard MacCutchan1-Jun-12 22:25 
QuestionUsing QueryString Pin
Franco Cipriano31-May-12 8:18
Franco Cipriano31-May-12 8:18 
AnswerRe: Using QueryString Pin
timmy1831-May-12 11:58
timmy1831-May-12 11:58 
AnswerRe: Using QueryString Pin
Karthik Harve31-May-12 18:14
professionalKarthik Harve31-May-12 18:14 
Hi,
Instead of "Response.Redirect()" use the javascript function like this.

JavaScript
function closeFrm(val1,val2,val3,val4,val5)
{
   self.close();
   window.opener.location.href = "frmMaain.aspx?name=val1&location=val2&geo=val3&industry=val4&subInd=val5";
}


and call this function through code as below.
C#
ScriptManager.RegisterClientSciptBlock(this,this.GetType(),"Myscript","closeFrm('"+ name +"','"+ location +"','"+ geo +"','"+ Industry +"','"+ SubInd +"'");


Hope it works.
with regards
Karthik Harve

GeneralRe: Using QueryString Pin
Franco Cipriano1-Jun-12 4:48
Franco Cipriano1-Jun-12 4:48 
AnswerRe: Using QueryString Pin
Ravi Bhavnani2-Jun-12 7:44
professionalRavi Bhavnani2-Jun-12 7:44 

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.