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!

Search results for query: *

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

    Grab an image from the internet and save it to the file system.

    This is a pretty simple question I guess. I just want to save an image from a web url to the file system of our server. The purpose is, we have a image processing tool that is a web URL that takes in a bunch of web paramaters and outputs a new JPG image and I want to take the outputed image...
  2. LoveToCode

    Sharing objects to a usercontrol

    Hello, I have a page that includes an ASCX file. In the ASP.NET page there is an object created, say User object. I pulled some stuff that needs to be shared to multiple pages into a user control. The code in that uc needs an instance of the user object. I'd hate to have to reinstatite it and...
  3. LoveToCode

    Simple parsing of an array based on delimiter

    Hello, I have a string like this: 89|23|53|24|29|73 I'd like to put that string into an array list (or array) without writing a function. Is there some array parsing function that will populate an array automatically? Thanks, -- jq
  4. LoveToCode

    Newbie Box question

    I have a box that I made out of a div; Below is the code for it. In IE it is 260px wide. In firefox its 302px wide. what the heck... Here is the CSS: <style type="text/css"> #playlist { background-color: #f2f2f2; border: #414141 1px solid; padding: 20px; width...
  5. LoveToCode

    Quirky firfox input text box issue - No Cursor!

    Yeah this is a weird one. I hope there is a workaround! There is a TEXTBOX on this page when you click "Send Message" that appears in a pop up div. When the textbox has focus and you are typing, the cursor does not appear. Its very annoying! Please tell me there is a simple explanation for...
  6. LoveToCode

    Please help me figrure out why this won't validate

    I created an XML file that is dynamically generated via ASP.NET http://wisetopic.com/profile/userplayer/songs.xml.aspx?playlistid=5 For some reason it chockes on this URL, which is one of the XML elements...
  7. LoveToCode

    Caching Questions

    Hello, I have a page I built that a FLASH movie that loads and XML data file with a bunch of songs in it. It loads very quickly. The problem I'm seeing is that the Images for the songs are loading each time there is a request. I want to cache them (obviously) or load them all at once. I'm not...
  8. LoveToCode

    How to make a DIV transparent?

    Hello! I have a footer that I am tryhing to make transparent. Currently, it show up as white?! <div style="clear: both;"></div> <div style="background: transparent; height:5px; float:left; width:625px;"> <div style="float:left;"><img...
  9. LoveToCode

    Getting Dup results with a multiple join

    In my result set I am seeing double instances of the same song (Mp3Id). It has to be in the logic of my join... does anyone see what couple possibly be wrong select Mp3.*, Artist.[Name] ArtistName, Album.*, Id3.bitRate, Id3.frequency, Id3.mode, dbo.SecToMin(Id3.length) length...
  10. LoveToCode

    Flash movie and image paths (relative - absolute?)

    I have a flash movie in an ASP.NET web application (I am software dev not a flash person). The SWF looks at an XML file that passes in an image url that is then in turn displayed on in that movie: http://wisetopic.com/profile/index02.aspx?userid=66 In the XML the image path I pass I have...
  11. LoveToCode

    SQL Search with params and LIKE

    Hello, Why doesn't this work as expected? select * from user where username like '%@name%' I can tell its something stupid - I dont think I'm using the param and like correctly together. Thanks, -- jenni
  12. LoveToCode

    String manipulation function in C#

    Hi, I'm building a Screen Scraper in C# using the WebResponse and WebRequest classes. I get the whole HTML page in one long big ass string. Now, I need to find certain elements in that HTML. All the elements I need are encased in some kind of tag. For example: <span...
  13. LoveToCode

    Getting NULL rows with multiple joins

    For the past couple days I've been trying to get this query to work correctly. I just re-wrote it to be more human readable, to help me debug it, but I'm still getting problems. The main problem now is that 4 out of the 6 rows have every column completely null. alter procedure...
  14. LoveToCode

    Dynamic SQL insert, varied number of params

    I have a table that looks like this: ItemID int SortOrder int I am using ASP.NET (C#) to update a table, with any given number of rows, to reflect a sort order specified by the user. The problem is if I use a function like this: UpdateItem(ItemId, SortOrder) { SQL = "UPDATE theTable...
  15. LoveToCode

    Substitute a DIV for a SPAN with the asp:panel control

    I'm using a panel to hide some html code, but the panel causes a line break, so I'd prefer it to write out a span. Another option I thought of, but am not sure is possible, is to use a <SPAN> tag with a runat="server" property, and somehow hide the <span> during runtime, though like I said I'm...
  16. LoveToCode

    Redirecting the parent href from an Iframe

    Hello, I am trying to move the location of the entire browser from an iframe using ASP.NET. If I use Response.Redirect, I get just the iframe location redirected. I think the answer is to use the RegisterClientScriptBlock() to add a javascript. This is the first time I've used this function...
  17. LoveToCode

    Redirecting parent frame from an iFrame

    Hello, I am trying to move the location of the entire browser from an iframe. If I use Response.Redirect, I get just the iframe location. I think the answer is to use the RegisterClientScriptBlock() to add a javascript. This is the first time I've used this fucntion, here is my code...
  18. LoveToCode

    Formating a TIME string in SQL

    Hello, I have a table that record the length of an MP3 file in a string that looks like this: Length: 369 I'd like to format that into a time string, like this: 3:69 the only thing is, notice how the time is 3:69... which does not make sense. I think the length being returned is in...
  19. LoveToCode

    This Left Join is not working

    This query does NOT return a column called SONG COUNT, as I thought it would when I wrote it. If I run this by itself it returns expected results: select albumId, count (*) AS SongCount from wisetopic_artist_album_mp3 group by albumId But this whole query doesn't include that column...
  20. LoveToCode

    Plz help with DataItem ItemCreated event (databinding)

    Hello, I have a very simple function that binds a dataset to a reapeater. I want to add a link programmaticaly, depending on a condition. Here is the function: private void LoadComments() { DataSet ds = thisUser.GetAllComments(thisUser.UserId); rp_Comments.DataSource...

Part and Inventory Search

Back
Top