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: kliz0328
  • Order by date
  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...
  16. kliz0328

    Active X Control Message

    First Off, thanks for your help it is greatly appreciated, the last question I will bug you with is, the fact that now the page will play any .wav file, but will not play and mp3 file, is this due to my browser settings?
  17. kliz0328

    Active X Control Message

    Currently I do not have to force users to only use IE the page actually is rendering better in firefox. After all of the research that i have done I can't find a way to Add Audio to my webpage without using the embed tag. Is there an alternative way to do this without using active X?
  18. kliz0328

    Active X Control Message

    no the message does not come up when I use FireFox, how would I go about signing the active x contrtol?
  19. kliz0328

    Active X Control Message

    I used the following code to embed an Audio file into my page, it works good, but when I open the page in IE I get a message box saying click to run Active X control. Is this going to happen with everyone's IE browser, is this a property of my code or of my IE browser and is there a way to stop...
  20. kliz0328

    Vb.Net 2003 and IIS

    I just installed Visual Basic .Net 2003 and went through and chose to create a new ASP.Net web Application in the program. I made a basic Home.aspx page and tried to bring it up through IIS but I keep getting a parser error message that says: "Could not load type 'WebApplication1.Global'" Line...

Part and Inventory Search

Back
Top