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!

Search results for query: *

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

    Access serialized form data with javascript and ASP

    Im not sure if this is the right forum, but here it goes. Im using ajax code to submit serialized data to my server side webpage: $(document).on('pageinit', '#login', function() { $(document).on('click', '#submit', function() { // catch the form's submit event if($('#fname').val().length >...
  2. Jouster

    How do i process serialized data with Javascript and ASP?

    Im not sure if this is the right forum, but here it goes. Im using ajax code to submit serialized data to my server side webpage: $(document).on('pageinit', '#login', function() { $(document).on('click', '#submit', function() { // catch the form's submit event...
  3. Jouster

    Catch Soap exception

    Hello, I have written a small web service and a client to consume it. I am intentionally throwing a soap exception so i can see if it is working. In my client application it sees it as an exception and not a soap exception.Here is the code for the client program. Imports...
  4. Jouster

    SQL Query to read two prces from table.

    I've been trying to figure this out all morning with little results. Maybe someone here can help me. Have a table (IPrices) like so: Item Code, Price List , Price 10001 1 100.00 10001 2 200.00 I need an output to show both prices on one row like: ItemCode ...
  5. Jouster

    Convert to foreign language

    This may be a long shot, but I have some asp pages written in Javascript and now I am being asked if there is a way to automatically change the languge from english to french and ect. Is there a plug-in or active x that anyone knows of that will do this? Is there something already built in to...
  6. Jouster

    Hyperlink control

    Hi, New to the asp.net and I'm trying to figure out how to dynamically add text to the navigateUrl property. I am databinding to a grid and i want a column for hyperlinks. Here is the code I have: <asp:TemplateField HeaderText=""> <ItemStyle...
  7. Jouster

    How to set up my data grid

    Hello, I'm having some difficulties and wondered if someone could stear me in the right direction. Here is what I need to do. I have an application so that a user logs in at startup. From the log in I know what dept they are from. Once I know what department they are from I want to set up the...
  8. Jouster

    MS Access, Javascript and Dates

    Hi, I am reading a date/time field from an Access DB with ASP Javascript. The field in the database is set to short date like 1/2/08. When I display the record on the web page with this code : <%=objSPF.Fields.Item("Expiration").Value%> I keep getting this long date like: Mon June 5...
  9. Jouster

    MS Access, Javascript and Dates

    Hi, I am reading a date/time field from an Access DB with Javascript. The field in the database is set to short date like 1/2/08. When I display the record on the web page with this code : objSPF.Fields.Item("Expiration").Value I keep getting this long date like: Mon June 5 00:00:00 EDT...
  10. Jouster

    Replacing a single character in a string

    Hi, I have a string and I need to replace a character in a certain position. There may be other characters in the string that are the same so I'm not sure replace() function will work correctly as I only want the one character changed. example: var myString = "00110011234" want to change...
  11. Jouster

    Problems inserting and Updating an Access DB

    Hi, I am going through a tutorial on ASP.Net ( used ASP for a long time) and I can't figure out why I keep getting an error when I try to update or insert a record. The table is called Models and the fields are: Model - String BasePrice - String Catalog - String Default_PN - String I made...
  12. Jouster

    Object Required and other questions....

    Hi, I am trying to convert a vbscript to Javascript. Its been a while since I've done Javascript and for the life of me cannot figure out whats wrong with this code. Here are the questions.... 1. I'm forced to put the startup function in the body section or i get an object required error. 2...
  13. Jouster

    Run vb script from web page.

    I posted this on the HTML forum, but thought i would put it here also to see if I could get some answers... What I would like to do is to be able to have the user click on a button and then I will run a script to send information to a barcode scanner connected to the user's PC (window.print...
  14. Jouster

    Run a script from a web page.

    What I would like to do is to be able to have the user click on a button and then I will run a script to send information to a barcode scanner connected to the user's PC (window.print won't work). The script would be a .vbs preferably. This would be running on an intranet here at work. If...
  15. Jouster

    object question

    I've been trying to learn how to use this tag and i found an example on the web but it does not work. Can someone tell me why and if you have a better source for me to learn this from i would greatly appreciate it. Code: <OBJECT ID=IEMenu1 CLASSID="clsid:7823A620-9DD9-11CF-A662-00AA00C066D2"...
  16. Jouster

    How to modify a user in WinXP

    I'm wondering if anyone knows how to modify a WinXP user. I would like a program that can change the user from an administrator to a limited user. I have found API's that will let you add or delete users, but not modify. Any help would be appreciated.
  17. Jouster

    Working with dates

    Hi, I would like to know what is the best way to go about getting the time elapsed from a certain date. I would like to get it in the format of year/months/days/hours/minutes. I have been looking at the datediff function but there must be more to it because of leap years and such. If someone...
  18. Jouster

    Wait for form to be unloaded

    Hello, I'm working on a program that loads and unloads a few different forms. What I want to do is load a form and the user will perform some functions then unload the form and load the next one. The problem I'm seeing is I load the first form and then the program keeps executing and loads the...
  19. Jouster

    Help with code, crashing

    Hi, I am wrinting a porgram for my assembly class and this little snippet keeps crashing and I don't understnd why. Could someone please point out what I am doing wrong? ; Program Description:Uses a procedure to contantenate two strings. Must have available space in target string. ; Date...
  20. Jouster

    Cookie Madness

    I'm trying to do a simple shopping cart and am having problems with the following code. All I'm trying to do is read in the cookie with the items in it and add them to an array. Then add the new item to the array and re-write the cookie. The problem is i never get the items I wrote to the...

Part and Inventory Search

Back
Top