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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: TheStriker
  • Content: Threads
  • Order by date
  1. TheStriker

    Logon Failed using Push Method in CR.NET

    I have been trying for weeks to get rid of this error but it just won't seem to go away. I have googled high and low and found nothing. I know it is probably a simple solution to this very common error but it eludes me. The skinny: I am just a guy trying to impress his boss by embedding...
  2. TheStriker

    Logon Failed using Push Method

    I have been trying for weeks to get rid of this error but it just won't seem to go away. I have googled high and low and found nothing. I know it is probably a simple solution to this very common error but it eludes me. The skinny: I am just a guy trying to impress his boss by embedding...
  3. TheStriker

    Undo an Update Query

    I fat-fingered an update query to remove null values and forgot to enter the WHERE clause so it updated all of the records. Is there a way to undo this?
  4. TheStriker

    Network Discovery From Web Page

    Hello, I am fairly new to the .Net Community and have been commisioned to convert some of our existing web apps from classic ASP to ASP.Net. One of the web applications has a feature that takes (network) information from a user via a webform like IP address, Computer name etc. and discovers...
  5. TheStriker

    Network Device Discovery from Web Page

    Hello, I am fairly new to the .Net Community and have been commisioned to convert some of our existing web apps from classic ASP to ASP.Net. One of the web applications has a feature that takes (network) information from a user via a webform like IP address, Computer name etc. and discovers...
  6. TheStriker

    Network Discovery from Web Page

    Hello, I have been commisioned to convert some of our existing web apps from classic ASP to ASP.Net. One of the web applications has a feature that takes (network) information from a user via a webform like IP address, Computer name etc. and discovers the network, retrieves computer names and...
  7. TheStriker

    Network Discovery Code

    Hello, I am fairly new to the .Net Community and have been commisioned to convert some of our existing web apps from classic ASP to ASP.Net. One of the web applications has a feature that takes (network) information from a user via a webform like IP address, Computer name etc. and discovers...
  8. TheStriker

    MachineToApplication Server Error

    Hello, I am slowly phasing my classic ASP application to the .NET framework for obvious reasons. To do this I often use iframes that have ASP.NET pages in them until I can complete the conversion. This works great until I wanted to use a Crystal Report Chart (created by VS.NET 2003). For...
  9. TheStriker

    Stored Procedure in Dreamweaver Won't Work!!

    I just created a stored procedure with a dynamic WHERE clause using the COALESCE function. This works great in SQL Server 2000 however when I call the same stored procedure from ASP via Dreamweaver to populate the parameters (e.g. Request.Form("variable")) etc., the dataset does not appear. I...
  10. TheStriker

    Stored Procedure Parameters Not Working

    I just created a stored procedure with a dynamic WHERE clause using the COALESCE function. This works great in SQL Server 2000 however when I call the same stored procedure from ASP via Dreamweaver and populate the parameters (e.g. Request.Form("variable")) etc., the dataset does not appear. I...
  11. TheStriker

    Loop Through Recordset with VBScript

    Hello, I am trying to loop through a recordset using ADO but when I run the following code, I get the error: 'Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another' Here is the code that generates this error" dim SQL dim rsLoopSvrs dim conn SQL =...
  12. TheStriker

    HELP!!...Can't Get Cookies to Work

    Hello, Using ASP 3.0 I have a text box that searches for the entry the user enters and I also have a checkbox next to the textbox that says 'Remember Me' that writes a cookie. The code: <% If (Request.Form("RememberMe") = True) Then Response.Cookies("SiteCode")("SiteCode") =...
  13. TheStriker

    Type Mismatch in Subprocedure

    Hello, I am trying to test a field to see if it is valued. If it is not, then display a message box on load and redirect the user to another page but I keep getting the dreaded 'Type Mismatch' error. Here is the code: <SCRIPT language="VBScript"> <!-- Sub CheckEmail If (<%If...
  14. TheStriker

    Type Mismatch: LBound

    Hello, I got this error when I tried to preview my page. I know it is a command that is used on an array, but it's strange because I didn't call this function. It's saying that there some sort of Type Mismatch. Does anyone have any experience with this error. Thanks in advance.
  15. TheStriker

    Can't Get Parameter to pass...

    Hello, I can't for the life of me pass the form parameter to the next form using POST (Request.Form(LMID)). I'm trying to pass the Primary Key field to all of the pages but I keep getting the error: 'Syntax error in query expression: LMID=' I spent all day today trying to figure out the...
  16. TheStriker

    Best Practices for Multipage Survey

    Hello, I am using Dreamweaver MX to develop a survey that spans about 5 pages. On the first page, I have the Insert Record behavior with the subsequent pages using the Update Record behavior. The insert record behavior works fine however, for some reason, when I get to the second page I get an...
  17. TheStriker

    Assigning values to fields in ASP

    Hi, I have a Data Entry form with a hidden boolean field called 'Submitted' on the page. When the user clicks submit, is there a way to programmatically assign a value to the field? Thanks in advance
  18. TheStriker

    Calculated Fields in Criteria Expression

    Hello, I have a calculated field named 'WeekOf' that calculates the beginning day of the week (Sunday). Now I want to grab all records using a &quot;Between&quot; statement with the calculated field as the beginning date of a date range. Between [WeekOf] And Date() Even though 'WeekOf' is a...
  19. TheStriker

    Calculate First Day of Any Week

    I know this may be a stupid question but, I wanted to know if there is a calculation that will return the first day of the week in date format, regardless of the date. For example: I have a field named 'dtCreatedOn' that are already populated with dates ranging from as far back as two years...
  20. TheStriker

    Update Subform from listbox

    Hello, I have a main form and a subform with a list box. I want to be able to update the fields on the subform via the selection made in the listbox. I know the wizard can do this for a listbox if the fields are on the main form. I was wondering if anyone had code or can modify this code to...

Part and Inventory Search

Back
Top