Click here to Skip to main content
15,913,487 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionerror (404)Not Found Pin
OlaMohammed29-Nov-06 1:29
OlaMohammed29-Nov-06 1:29 
AnswerRe: error (404)Not Found Pin
Paddy Boyd29-Nov-06 1:40
Paddy Boyd29-Nov-06 1:40 
GeneralRe: error (404)Not Found Pin
OlaMohammed29-Nov-06 1:57
OlaMohammed29-Nov-06 1:57 
GeneralRe: error (404)Not Found Pin
Sandeep Akhare29-Nov-06 2:14
Sandeep Akhare29-Nov-06 2:14 
QuestionHow to reduce displaying time for treeview in ASP.Net Pin
Senthil_M29-Nov-06 1:28
Senthil_M29-Nov-06 1:28 
AnswerRe: How to reduce displaying time for treeview in ASP.Net Pin
deardiary29-Dec-09 1:39
deardiary29-Dec-09 1:39 
AnswerRe: How to reduce displaying time for treeview in ASP.Net Pin
Ravi Sant13-May-11 10:26
Ravi Sant13-May-11 10:26 
QuestionPopup Problem Pin
sri_con329-Nov-06 0:53
sri_con329-Nov-06 0:53 
hi,
I have a problem with Popup window in IE7 when ever i create a popup window and i try to close tat popup window its creating a new popup window. with same url. when i clik on this second popup windwo then its closing.

code:

Default.aspx

<script language="javascript" >


function OpenAnotherWindow()
{ var name = document.getElementById("txtName").name;

WindowName="test";
var left, top;
left = (window.screen.availWidth - 400)/2;
top = (window.screen.availheight - 250)/2;
settings= "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, top="+ top +", left="+left+", height=250,width=400";
var id = window.showModalDialog('DialogPage.aspx?name='+ document.form1.txtName.value,WindowName, settings);
document.getElementById("txtName").value=id;

}
</script>


<body>
<form id="form1" runat="server">
<div>
<asp:Button ID="btnOpenWindow" runat="server" Text="Open Window" />
<input id="txtName" type="text" /></div>
</form>
</body>

default.aspx.cs

page_load

btnOpenWindow.Attributes.Add("onclick", "return OpenAnotherWindow()");


dialogpage.aspx

<script language="javascript">
function CloseThisWindow()
{
var myName = "Popup";
var o = new Object();
o.orglevid = "1";
o.orgname = "test";
window.returnValue=o.orgname;
window.close();
return true;
}

</script>

<form id="form1" runat="server">

<div>
<asp:Button ID="btnCloseWindow" runat="server" Text="Close Window" OnClick="btnCloseWindow_Click" />
</div>
</form>


please help me out
not this issue is in IE 7 only in IE 6 its working fine






sri
AnswerRe: Popup Problem Pin
Guffa29-Nov-06 1:34
Guffa29-Nov-06 1:34 
GeneralRe: Popup Problem Pin
sri_con329-Nov-06 1:43
sri_con329-Nov-06 1:43 
AnswerRe: Popup Problem Pin
Guffa29-Nov-06 21:11
Guffa29-Nov-06 21:11 
GeneralRe: Popup Problem Pin
sri_con329-Nov-06 23:00
sri_con329-Nov-06 23:00 
AnswerRe: Popup Problem Pin
Guffa30-Nov-06 4:33
Guffa30-Nov-06 4:33 
AnswerRe: Popup Problem Pin
RaviJJain29-Nov-06 2:10
RaviJJain29-Nov-06 2:10 
GeneralRe: Popup Problem Pin
sri_con329-Nov-06 2:28
sri_con329-Nov-06 2:28 
QuestionRuntime Scrollbar in Datagrid Pin
monika_vasvani29-Nov-06 0:43
monika_vasvani29-Nov-06 0:43 
AnswerRe: Runtime Scrollbar in Datagrid Pin
VMSSanthosh29-Nov-06 1:51
VMSSanthosh29-Nov-06 1:51 
GeneralRe: Runtime Scrollbar in Datagrid Pin
monika_vasvani29-Nov-06 2:45
monika_vasvani29-Nov-06 2:45 
GeneralRe: Runtime Scrollbar in Datagrid Pin
VMSSanthosh29-Nov-06 17:18
VMSSanthosh29-Nov-06 17:18 
GeneralRe: Runtime Scrollbar in Datagrid Pin
VMSSanthosh29-Nov-06 17:19
VMSSanthosh29-Nov-06 17:19 
AnswerRe: Runtime Scrollbar in Datagrid Pin
indianet29-Nov-06 5:31
indianet29-Nov-06 5:31 
QuestionFolder browser object in ASP.net Pin
Suj_7829-Nov-06 0:41
Suj_7829-Nov-06 0:41 
AnswerRe: Folder browser object in ASP.net Pin
Sandeep Akhare29-Nov-06 1:09
Sandeep Akhare29-Nov-06 1:09 
AnswerRe: Folder browser object in ASP.net Pin
Sandeep Akhare29-Nov-06 1:32
Sandeep Akhare29-Nov-06 1:32 
QuestionHow to set dynamic tooltips using class module? Pin
JamesJM29-Nov-06 0:29
JamesJM29-Nov-06 0:29 

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.