I am executing a bat file from my asp application to restart IIS (on a remote server). I would like a way to know when it was completed. Do you know how to do that?
For testing I was trying it locally. The bat file gets executed by using the procesinfostart object ok. Yet no notification that...
hmmmm... "how do i check that the user is authenticated in the popup (normal aspx) page"
Can you in the page load event in code behind do whatever you do to authenticate?
If User.Identity.IsAuthenticated Then
Which is part of the System.Security.Principal.IPrincipal.Identity (namespace)
I...
hmmm.. I sorda do something similar .. maybe it can give you ideas to help you out.
I have a dropdown list that makes the initial web service call..
<asp:DropDownList ID="DropDownList1" runat="server" onchange="GetData()"> </asp:DropDownList>
(Note I am using AJAX)
I basically create a...
I have a parent (ASPX) Page where I call window.showModalDialog ...
var MyArgs = new Array(Parm1, Parm2, Parm3);
var WinSettings =
"center:yes;dialogHeight:400px;dialogWidth:400px" ;
var URL = "PopUpChild.aspx";
//code stops here until popped window is closed
var MyArgs =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.