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 dencom 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 kliz0328

  1. kliz0328

    Image Upload works but...

    what is the best method for this in your opinion?
  2. kliz0328

    Dynamic Update

    Well I have this so far but nothing will show up in my <EditItemTemplate> tag, the table cells are there but they are all empty. HOw do I get the text boxes to appear? <asp:Datagrid ID="Players" HeaderStyle-Font-Name="Arial" HeaderStyle-Font-Bold="True" HeaderStyle-BackColor="AliceBlue"...
  3. kliz0328

    Dynamic Update

    would I be able to push 1 update button and update every profile all at once?
  4. kliz0328

    Image Upload works but...

    Is this what I would use to disable the cache? Sorry I am not at work right now so I can't test it. Response.Expires = 0
  5. kliz0328

    Dynamic Update

    I am trying to admin a database that has multiple profiles. What I want to do is on the page load list all of the Profiles, with textboxes containing their information. I then want to make any changes and update all of the profiels all at once. My only problem is that I do not know how to...
  6. kliz0328

    Image Upload works but...

    I am using this code to upload an image inpFileUp.PostedFile.SaveAs(path) and am using the HTMLInputFile Control to do so. The image uploads fine, but when the page redisplays the picture is still the old one, unless I refresh the page then it changes. Do I need to call some type of...
  7. kliz0328

    Unspecified error

    I was wondering if anyone else has had this problem before. I have been working on a site at work, and throughout the whole day it works fine, I am connected to the server at my machine at work. My problem is when I come home and start testing the site I get an "Unspecified Error" message and...
  8. kliz0328

    Dynamically Formatting Pictures

    Is this the best way to go about formatting pictures in a website, They are profile pictures and will have to be trimmed to fit a 100 x 100 frame, or is there a bettter way?
  9. kliz0328

    Dynamically Formatting Pictures

    I have a site where users can upload pictures. My question is...Is there anyway to dynamically format these pictures. I assume people will be uploading pictures of all different sizes, and if they are a rectangular shape they will get skewed if I make the height unproportional to the width...
  10. kliz0328

    Setting Variable = to Repeater Item

    I am trying to split the item from the table into an array then loop through the array values and display pics side by side like this Is there a way to do this or do I have to use the classic asp way of looping through the record set like I am here with dbreader? <% Dim Fielding() as String Dim...
  11. kliz0328

    Declaration Expected Error

    Nevermind I forgot the Sub Page_Load declaration like an idiot my apologies
  12. kliz0328

    Declaration Expected Error

    I declared the types of the variables and am still getting the same message.
  13. kliz0328

    Declaration Expected Error

    I am getting a declaration Expected error on my connection string I don't know what it could possibly be? <Script Runat="Server"> Dim Conn Dim SQL Dim dbcomm, dbreader Dim Headers as String Conn=New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;data source=" &...
  14. kliz0328

    Setting Variable = to Repeater Item

    I was wondering if it is possible to set a variable equal to a repeater item. It tried this but it siad that Container is not decalred. Dim Fielding() as String Dim strItem as String Fielding = Container.DataItem("FieldingDesc") For each strItem in Fielding
  15. kliz0328

    Active X Control Message

    I have both of them in there right now, my computer at home plays any type of file just fine for both IE and FF, but at work my IE will only play wav files, and FF will not play anything, but for FF that is b/c I do not have the plugin installed. Are there plugins that go with IE, I thought all...

Part and Inventory Search

Back
Top