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 Mike Lewis 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: jgraves13
  • Order by date
  1. jgraves13

    Load an Array from directory or db...

    BillyRayPreachersSon and kaht, Thank you both for you time and answers. I just thought it was possible to do it quick and dirty (so to speak). BillyRayPreachersSon you did give me the correct answer now that I look back at it and see what your saying. That just wasn't what I really wanted to...
  2. jgraves13

    Where issue in my Update string.

    I have, but I can seem to work a statement out that is error free... I was hoping for some suggestions... I now I am close to being right, but I am just missing something, I think...
  3. jgraves13

    Where issue in my Update string.

    Hello, I am receiving an error message is seem at the second Where statement, I want the update to occur when the where statement is true see below. Any ideas on how to make this happen? UPDATE HL_Data SET Signon_ID = 'New_User_ID' WHERE dbo.HL_Jobs.Job_Name...
  4. jgraves13

    Load an Array from directory or db...

    So are you saying that JavaScript can not populate an array from a directory or database? I am looking for either method to populate my array. I already have a a JavaScript that does an image flip every 30 seconds, I would like to just enhance it a little more. Any other thoughts?
  5. jgraves13

    Load an Array from directory or db...

    I am not sure how to pull data i.e.(images) from an image directory. I have a rotate function that I am currently using in my Body OnLoad tag. I want to make my life easier by just randomly grabing images instead of me having to type in what images display randomly. I am also open to using a...
  6. jgraves13

    How to call another .aspx page

    I have created a web form named Default.aspx (Language C#)in which the user fills it in. I have an image button for the user to select an effective date. MY issue is how do I call Calendar2.aspx, when the user clicks the image button from Default.aspx? Sorry about the typo in the other post! JG
  7. jgraves13

    How to call another .aspx page

    I have created a web form named Default.aspx (Language C#)in which the user fills it in. I have an image button for the user to select an effective date. MY issue is how do I call Calendar2.aspx, when the user clicks the image button from Default.asp? Thank you, JG
  8. jgraves13

    Calendar issue

    jgraves13 (Programmer) Jun 18, 2007 I have a form that I created with an image button. This image button is a calendar image that calls a calendar popup. I do not know how to make the calendar change when I select any month from a dropdown box. Can someone show me what I need to due to...
  9. jgraves13

    Calendar question about selecting a month.

    Can this be done with year as well? DateTime d = DateTime.Now; int year = d.Year;
  10. jgraves13

    Calendar question about selecting a month.

    Is it possible to extract the month from some sort of Date function? I am building an application that calls the Calendar function and added two dropdown boxes one for Month and one for Year. I would like to select any month and have the calendar go to that month. Does anyone know how this can...
  11. jgraves13

    How to call JavaScript function in C# code?

    Hello, I have this JavaScript file on a server that I would like to make a call to a specific function in the JavaScript, how can this be done?
  12. jgraves13

    How to call php from php.

    Audiopro to answer your question, yes I want to rotate a picture everything the browser is reloaded. jpadie thank you for straitening me out on the onLoad. I am not sure if I am comfort about yet with using AJAX to have it interact with the php script for security reasons. I have a php script...
  13. jgraves13

    How to call php from php.

    If I use a one of these options include("Rotate.php"); require("Rotate.php"); include_once("Rotate.php"); require_once("Rotate.php"); can I then do this? <Body OnLoad="Rotate.php"> Best Regards!
  14. jgraves13

    How to call php from php.

    Hello, I want to call a php file "Rotate.php" from my index.php file, any ideas? ~JG
  15. jgraves13

    how to check for safari web browser

    Thanks TipGiver... that was a good tip, he is what I am doing to check... in a javascript now... :) var x = navigator document.write("CodeName=" + x.appCodeName) document.write("<br />") document.write("MinorVersion=" + x.appMinorVersion) document.write("<br />") document.write("Name=" +...
  16. jgraves13

    Search engine

    I would make sure you read the "fine" print on using someone else's search engine to make there are "strings" attached too. IIS uses indexing and searches the Meta tag information, that's what we use at work . ~ JG
  17. jgraves13

    how to check for safari web browser

    I just ran into an issue where a client is using an Apple laptop and using Safari to access some .NET appilcations, and it seems to be displaying the navagation bar funny. Does anyone know how or point me to some resources to explain how I can check in the code for the Safari web browser was one...
  18. jgraves13

    how to check for safari web browser

    Hello, Does anyone now how to implement a safari web browser check in my .NET code. JG
  19. jgraves13

    html call to vbscript on the server

    I think I need to refine this, I am looking for a way to execute the date function from the server then apply the time value to some html file. Is this possible for vbscript to take the time from the server and apply it or will the browser always call the clients time??? JG
  20. jgraves13

    html call to vbscript on the server

    Is it possible to put a vbscript calling the year on a server, then making a call from some html file to get the date from the server? JG

Part and Inventory Search

Back
Top