Click here to Skip to main content
15,891,316 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionvedio confernce in asp.net Pin
harilatha12-Feb-10 19:45
harilatha12-Feb-10 19:45 
AnswerRe: vedio confernce in asp.net Pin
Abhijit Jana12-Feb-10 20:13
professionalAbhijit Jana12-Feb-10 20:13 
GeneralRe: vedio confernce in asp.net Pin
harilatha12-Feb-10 20:28
harilatha12-Feb-10 20:28 
GeneralRe: vedio confernce in asp.net Pin
sashidhar12-Feb-10 22:05
sashidhar12-Feb-10 22:05 
Questiondesigner appear empty after change source of page Pin
kasraa0009800012-Feb-10 9:58
kasraa0009800012-Feb-10 9:58 
AnswerRe: designer appear empty after change source of page Pin
keyur satyadev12-Feb-10 18:57
keyur satyadev12-Feb-10 18:57 
QuestionRe: designer appear empty after change source of page Pin
kasraa0009800013-Feb-10 5:37
kasraa0009800013-Feb-10 5:37 
Questioniframe pop working in IE but not in FireFox Pin
kamran pervaiz12-Feb-10 1:47
kamran pervaiz12-Feb-10 1:47 
<a id="A1" name="SelectZip" href="javascript:void(0);" onclick="javascript:SelectZip('<%=txtvDemoZip.ClientID%>',
'<%=txtvDemoCity.ClientID %>','<%=txtvDemoState.ClientID %>');"style="vertical-align: middle; font-size: 10pt; color: #4878a9; font-family: Arial; cursor:hand;text-decoration: underline;">Zip</a>

<iframe src="../../../../asps/DummyPage.htm" name="frmzip" id="frmzip" frameborder="0" style="vertical-align: top; text-align: center; width: 0;" marginwidth="0" marginheight="0"scrolling="auto" height="0" tabindex="-1"></iframe>

function SelectZip(txtZipCode,txtCity,txtState)
{

if (document.getElementById(txtZipCode).value == "")
{
alert('Please Enter Zip Code.');
document.getElementById(txtZipCode).focus();
return;
}
else if(document.getElementById(txtZipCode).value.length <5 &&document.getElementById(txtZipCode).value.length > 0 )
{
alert('Please Enter Zip Code.');
document.getElementById(txtZipCode).focus();
return;
}
else
{
strZipp=document.all(txtZipCode).value;
strcity=document.all(txtCity).value;
strstate=document.all(txtState).value;

// document.all("frmzip").src = "frameZip.aspx?cri=" & strZipp & "&vstate=" & strstate & "&vcity=" & strcity & "&From=Registeration" & "&txtCity=" & txtCity & "&txtState=" & txtState;
document.getElementById('frmzip').src = "frameZip.aspx?cri=" + strZipp + "&vstate=" + strstate + "&vcity=" + strcity + "&From=Registeration" + "&txtCity=" + txtCity + "&txtState=" + txtState;
// window.frames("frmzip").location.href = "frameZip.aspx?cri=" + strZipp + "&vstate=" + strstate + "&vcity=" + strcity + "&From=Registeration" + "&txtCity=" + txtCity + "&txtState=" + txtState;
// var URL = "frameZip.aspx?cri=" + strZipp + "&vstate=" + strstate + "&vcity=" + strcity + "&From=Registeration" + "&txtCity=" + txtCity + "&txtState=" + txtState;
}
document.getElementById(txtZipCode).scrollIntoView(true);

}



you can see how many ways i have tried but none worked Frown | :( even i tried to call the function on Href but still no luck. when zip link is clicked it opens a popup which is iframe. it works in IE but firefox no luck yet. Help me out
thank you

Kamran Pervaiz
Asst. Software Engineer
AnswerRe: iframe pop working in IE but not in FireFox Pin
T M Gray12-Feb-10 5:14
T M Gray12-Feb-10 5:14 
QuestionClickheat Clickmap? Pin
emiliovillarox12-Feb-10 0:18
emiliovillarox12-Feb-10 0:18 
QuestionIIS problem in asp.net Pin
JC.KaNNaN12-Feb-10 0:00
JC.KaNNaN12-Feb-10 0:00 
AnswerRe: IIS problem in asp.net Pin
Abhijit Jana12-Feb-10 1:54
professionalAbhijit Jana12-Feb-10 1:54 
QuestionSQL SErver REplication Pin
satsumatable11-Feb-10 23:15
satsumatable11-Feb-10 23:15 
AnswerRe: SQL SErver REplication Pin
Eddy Vluggen12-Feb-10 2:00
professionalEddy Vluggen12-Feb-10 2:00 
Questionsending mail through smtp Pin
amitamit09911-Feb-10 22:48
amitamit09911-Feb-10 22:48 
AnswerRe: sending mail through smtp Pin
R22k11-Feb-10 23:29
R22k11-Feb-10 23:29 
GeneralRe: sending mail through smtp Pin
amitamit09912-Feb-10 1:17
amitamit09912-Feb-10 1:17 
AnswerRe: sending mail through smtp Pin
T M Gray12-Feb-10 5:05
T M Gray12-Feb-10 5:05 
GeneralRe: sending mail through smtp Pin
PunkIsNotDead12-Feb-10 6:03
PunkIsNotDead12-Feb-10 6:03 
GeneralRe: sending mail through smtp Pin
T M Gray12-Feb-10 6:14
T M Gray12-Feb-10 6:14 
QuestionHow Template style change Pin
Ajeet kumar verma11-Feb-10 22:45
Ajeet kumar verma11-Feb-10 22:45 
AnswerRe: How Template style change Pin
Anurag Gandhi12-Feb-10 0:29
professionalAnurag Gandhi12-Feb-10 0:29 
AnswerRe: How Template style change Pin
T M Gray12-Feb-10 5:58
T M Gray12-Feb-10 5:58 
QuestionTextbox Scroll Bar Pin
koncuk11-Feb-10 22:32
koncuk11-Feb-10 22:32 
AnswerRe: Textbox Scroll Bar Pin
s.mn11-Feb-10 23:35
s.mn11-Feb-10 23: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.