Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by nicsin

  1. nicsin

    Calling external exe using cmd (System.Diagnostics) is slow on W2k3

    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...
  2. nicsin

    WCF and XML-RPC

    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...
  3. nicsin

    WCF and XML-RPC

    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...
  4. nicsin

    Syntax for "which submit button submitted?"

    Gary, can you post your code for the whole form? <form...> . . . </form>
  5. nicsin

    Syntax for &quot;which submit button submitted?&quot;

    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...
  6. nicsin

    Syntax for &quot;which submit button submitted?&quot;

    What is the value of Request.Form("whichSubmitButton") at the server?
  7. nicsin

    Syntax for &quot;which submit button submitted?&quot;

    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
  8. nicsin

    Syntax for &quot;which submit button submitted?&quot;

    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
  9. nicsin

    Syntax for &quot;which submit button submitted?&quot;

    Try this: <td> <a name="anchor1"></a> <input type="hidden" id="whichSubmitButton" value="0" > <input type="text" id="q1oz" name="q1oz" value="<% = q1oz %>" > <input type="image" name="imageField" onClick="document.getElementById('whichSubmitButton').value=1;submit();"...
  10. nicsin

    Add Custom Button to GridView's Pager

    That was enough Jason. Thnx for the tip!
  11. nicsin

    Add Custom Button to GridView's Pager

    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...
  12. nicsin

    Pocket PC

    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
  13. nicsin

    Can't get my query to work

    could you post here what you've already got so we can help you sort it out? N
  14. nicsin

    connecting two sql statements

    SELECT UpdateCallCenterSX2QRY.ContactID, UpdateCallCenterSX1QRY.PatientAccountNumber, UpdateCallCenterSX1QRY.PatientLastName, UpdateCallCenterSX1QRY.PatientFirstName, UpdateCallCenterSX1QRY.PatientCity, UpdateCallCenterSX1QRY.PatientState, UpdateCallCenterSX1QRY.PatientZipCode...
  15. nicsin

    connecting two sql statements

    try this SELECT join1.ContactID, UpdateCallCenterSX1QRY.PatientAccountNumber, UpdateCallCenterSX1QRY.PatientLastName, UpdateCallCenterSX1QRY.PatientFirstName, UpdateCallCenterSX1QRY.PatientCity, UpdateCallCenterSX1QRY.PatientState, UpdateCallCenterSX1QRY.PatientZipCode...

Part and Inventory Search

Back
Top