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 strongm 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 Tr0

  1. Tr0

    Automate mp4 conversion to flv?

    Is it possible to automate the conversion of a mp4 file to a flv file on the backend?
  2. Tr0

    Simple Gridview Page not Updating?

    I'm creating a simple gridview and when I submit the update the threshold value doesn't update in the database. Before I was recieving a scalar variable error, then I added the update parameters and now nothing happens when submitted. Any suggestions??? Here's the code: <%@ Page...
  3. Tr0

    Error Checking in Javascript?

    Awesome, the second reccomendation works great! Thanks for your help.
  4. Tr0

    Error Checking in Javascript?

    Thanks man! It still doesn't work, but it tells me that its something on the back end. Just wanted to make sure my JS was right. Thanks again.
  5. Tr0

    Error Checking in Javascript?

    I'm new to JavaScript. I am trying to do some error checking on a page. The goal is when a user hits the submit key it checks for a certain option value. If that value is the default value it will alert the user to select another option. The problem is i'm doing this on an asp file that was...
  6. Tr0

    Character Filtering in a Text Box?

    I'm a newbie to ASP. I was wanting to do some character filtering in a text box and wondering what the best way to do it is? For example, I have a text box and lets say I want to filter out curly brackets "{" if someone enters that character. If they were to enter this character in the text...
  7. Tr0

    Change Alpha value on Mouse Roll Over?

    Nevermind I figured it out. Here's the code incase anyone is interested: var newbutton:Sprite = new Sprite(); addChild(img1_btn); img1_btn.addEventListener(MouseEvent.MOUSE_OVER,doOver); img1_btn.addEventListener(MouseEvent.MOUSE_OUT,doOut); function doOver(event:MouseEvent) {...
  8. Tr0

    Change Alpha value on Mouse Roll Over?

    I'm a total newb to flash, I am using ActionScript 3.0 and all I'm trying to do is when the mouse rolls over a button it changes the alpha value to 50%. Here's the code I'm using: function onRollovr(evt:MouseEvent):void { this.alpha = 50; }...
  9. Tr0

    PHPbb Forum Upload Question?

    I'm in the process of building a forum using PHPbb. I was curious if it is possible to allow users to upload pdf files? Any help would be appreciated! Thanks.
  10. Tr0

    Email without using mailto() function....

    I have experience with ASP so I will do a little research :) thanks so much.
  11. Tr0

    Email without using mailto() function....

    I would like to create a submit button for my web page that will email me text from a text box when the user hits the submit button. I would like it to not bring up outlook express or any other software. I just want it to send the text value directly to my email address. Is there any way to...
  12. Tr0

    Connecting to sql server 2005 DB through asp

    Thanks for your opinion anon I will keep that in mind.
  13. Tr0

    Connecting to sql server 2005 DB through asp

    Thanks for the link to the page... Its everything I could ever want :)
  14. Tr0

    Connecting to sql server 2005 DB through asp

    I am trying to create a connection to a SQL Server 2005 DB within an ASP page using the following code: Set Conn= Server.CreateObject("ADODB.Connection") Conn.Open "Provider=SQLOLEDB; Data Source = "" Initial Catalog = ""; User Id = ""; Password=''" The error message I am receiving says that...
  15. Tr0

    ASP Dynamic Video Upload Form

    Thanks for the link it was very helpful.

Part and Inventory Search

Back
Top