Hi all
I have a very weird problem. I developed the application on XP/IIS5 and everything was fine. When I deployed it on W2k3 server with IIS6 I started getting long delays.
The code below runs an exe using cmd and then reads the response back in a local variable. In W2k3 there is always a...
Hi again
I solved the problem for now by writing a xml-rpc proxy that translates the messages to soap, connects to the wcf service, gets the result and returns it to the xml-rpc client. My web pages use the wcf service as before.
Having said that it would be much better to have only one...
Hi all,
I am writing an ASP.NET web app using C# 3.5. I have a requiremenent to expose the business as web services to be consumed by an external XML-RPC client, which was written by another company.
I thought about using WCF as this will enable by web pages to call the same services and...
My first post should work if you have fixed the elseif mistake. Are you sure you substituted your code with mine? I only left one instance of the hidden control (you had two) and changed its name attribute with an id. It definately works at my end...
sorry no space
If Request.Form("whichSubmitButton") = "1" Then
Response.Redirect "cart.asp#anchor1"
ElseIf Request.Form("whichSubmitButton") = "2" Then
Response.Redirect "cart.asp#anchor2"
Else
Response.Redirect "default.htm"
End If
Your server-side code should be
If Request.Form("whichSubmitButton") = "1" Then
Response.Redirect "cart.asp#anchor1"
Else If Request.Form("whichSubmitButton") = "2" Then
Response.Redirect "cart.asp#anchor2"
Else
Response.Redirect "default.htm"
End If
Hi all,
I've got a gridview control with a pager, which works ok. What I want to do is add a custom button at the same row as the PREVIOUS - NEXT buttons of the pager.
The reason is that I have added a template column to the right of the grid with checkboxes. The user will check some of them...
Hi all,
i am writing an application for a XDAII and I was wondering if there is a way to capture the video from the internal camera and stream it to the server. Any input would be greatly appreciated.
Thanks
do you mean something like this?
SELECT UpdateCallCenterSX2QRY.ContactID,
UpdateCallCenterSX1QRY.PatientAccountNumber, UpdateCallCenterSX1QRY.PatientLastName, UpdateCallCenterSX1QRY.PatientFirstName, UpdateCallCenterSX1QRY.PatientCity, UpdateCallCenterSX1QRY.PatientState...
Here is something interesting
function fun(){
var args=fun.arguments;
for (i=0; i<args.length; i++){
alert(args[i]);
}
}
It does work on IE6+, don't know on others. And ok alert may be a bad example but you get the idea.
N
If the page is refreshed every two minutes why do you want to check it every 10 seconds? nothing will be changed until the two minutes have passed...
anyway you could use the FileSystemObject to scan the file but if you give us an example of the page and the word you are looking for we might...
How is the group information stored in the database? is it another field in the tbl_people? if so then try that
<%
set objconn = server.createobject("adodb.connection")
objconn.open "william"
set objrec = server.createobject("adodb.recordset")
' Retrieve the Windows Domain Username
username...
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.