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 gkittelson 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: feemi
  • Order by date
  1. feemi

    FindControl

    I have a datagrid that contains a template column. In this column I have two controls: The first control is an input field, the second is an asp:button control. The user can enter a value in the input field and select the button (Save) control. When the save button is selected, the...
  2. feemi

    DataGrid Sort Event Not Firing

    I have the following datagrid <asp:DataGrid id=&quot;grdSearchResults&quot; runat=&quot;server&quot; Width=&quot;544px&quot; Height=&quot;93px&quot; CssClass=&quot;StandardFont&quot; AllowSorting=&quot;True&quot; OnSortCommand=&quot;grdSearchResults_SortCommand&quot...
  3. feemi

    ASP File Upload Error

    Ok, I have it now. Thanks for your help!
  4. feemi

    ASP File Upload Error

    I'm getting Microsoft VBScript runtime error '800a01f4' Variable is undefined: 'Upload'
  5. feemi

    ASP File Upload Error

    You must be joking. Is it that simple? I'll give it a try. Thanks
  6. feemi

    ASP File Upload Error

    I'm trying to use the ASP Upload code to upload a file to the server. In addition, I'm allowing the user to enter information that will be included in an email. If I use the ASPUpload logic (uses a binary read) then I cannot use the request.form object to get my email information. I can get...
  7. feemi

    File Upload Status Page

    I'm developing a page for a file upload. Since the file sizes vary, I would like to display a page stating Please Wait, this may take a few minutes to process. Does anyone know of an easy way to display this page while processing the file upload? Thanks
  8. feemi

    CDONTS Attachment Size Restrictions

    I'm interested in using CDONTS to attach files for email. But I don't want the user to attach any size file. Unfortunately, I haven't found any information that would help me determine the maximum size. I could arbitrarily set it, but would rather use a scientific approach. Are you aware of...
  9. feemi

    Setup

    I found the problem. .Net wasn't registered with IIS. See Thread855-351076 Thanks for you help all.
  10. feemi

    Setup

    If you enter some text into the textarea and then submit the page, the text is not retained after submission. This works successfully on another machine setup for .Net development.
  11. feemi

    Setup

    I have a simple aspx that doesn't post back the data. This is about as simple as it gets. <HTML> <HEAD> <TITLE></TITLE> </HEAD> <BODY> <form Runat=&quot;Server&quot;> <b>Username:</b> <br> <input id=&quot;username&quot; type=&quot;text&quot; size=&quot;30&quot; Runat=&quot;Server&quot;> <p>...
  12. feemi

    OpenTextFile causes the browser to hang.

    Norton was the problem. I searched all through the KB last night and didn't find this article. Go figure. Thanks for the help!
  13. feemi

    OpenTextFile causes the browser to hang.

    I have the following code in my ASP page: If fso.FileExists(Server.MapPath(&quot;test.txt&quot;)) Then sourcefile = &quot;test.txt&quot; Response.Write &quot;<BR>Success&quot; else Response.Write &quot;<BR>fail&quot; end if This returns success everytime. If I add this line of...
  14. feemi

    Cache

    That would seem to work, but my page is already cached. I have added several lines of code to prevent the caching. Problem is that it is already cached.
  15. feemi

    Cache

    Ok, this one is a little crazy. I've been maintaining this website for about six months. All the sudden, my ASPs are caching somewhere. My updated are not evidenced in the browser. The http headers option in IIS is set to expire immediately. I have stopped and started the website. I have...
  16. feemi

    Crystal - ASP

    I have the following code in the ASP. The connection always fails. The ODBC system DSN is Automation. I have reviewed the Crystal report and it has the same setting. Am I missing a DLL or something? set crtable = session(&quot;oRpt&quot;).Database.Tables.Item(1) crtable.SetLogOnInfo...
  17. feemi

    Crystal - ASP

    I have an ASP that displays a simple (non parameterized) report. This report displays okay, but I cannot refresh the data. I get an error stating that the server has not yet been opened. I would like this report to display refreshed data when the report is initialized on the page. Then I will...

Part and Inventory Search

Back
Top