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 bkrike 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: TerryDad2
  • Content: Threads
  • Order by date
  1. TerryDad2

    Downloading large File function includes the html code of page

    I have followed teh workaround to download a large file documented in Microsoft's KB article 812406. It successfully can download huge file, unfortunatley, it also appends the html code of the web page the function is on. Any ideas?
  2. TerryDad2

    Reference a class defined in one file by a different codebehind page

    I know this should be simple, but I just can't figure it out. I am moving the scripting out of an aspx page into a codebehind page. The aspx page has a reference to a .vb file that has a number of reusable functions. When compiling the codebehind page, I get errors that the custom functions...
  3. TerryDad2

    Value of a cell in a Detail DataGrid

    I am working with a detail datagrid trying to the editing functionality that is available with the master datagrid. I've got it all working except for getting the values that are not entered by the user, i.e. just the value of the cell. I can get the values entered by the user in combo and text...
  4. TerryDad2

    DataGrid in a DataGrid

    I saw a posting on this subject, but now I can't find it. Anyone know where it is or how to do such a thing?
  5. TerryDad2

    Value of a template column cell

    I am trying to obtain the value in the datagrid from a template column. e.Item.Cells(5).text returns a null value on template columns, but obtains the displayed text on a databoundcolumn. What is the correct syntax for obtaining the displayed value in a template column? Terry
  6. TerryDad2

    How to upload large files

    The HttpPostedFile chokes on larger file sizes. Any other ideas to upload large file?
  7. TerryDad2

    DataGrid Edit does not use entered values

    I am working on retrieving the entered values for a DataGrid row using the EditCommandColumn. Functionally, all the events work well (onEdit, onCancel, and onUpdate). The problem I am having is getting the updated values the client enteres. The code is only using the existing values. I have...
  8. TerryDad2

    Conditionally Display edit button in datagrid

    I have a data grid where I want a button column to show an "edit" button only when the record is "owned" by the user but also show all other records in the table. The owner is a column in the same table the data is pulled from. How does one conditionally have a buttoncolumn...
  9. TerryDad2

    Session_OnEnd() not working

    I want to delete a file created by a session when the session ends. I am unable to figure out why the file is not deleted. The session_onstart works fine. Below is the code. Any suggestions? <%@ Import Namespace=&quot;System&quot; %> <%@ Import Namespace=&quot;System.IO&quot;%> <script...
  10. TerryDad2

    onitemcommand problem

    I am having difficulty finding out why the onitemcommand doesn't call the RetrieveFile sub when the button is clicked, but does when the onsortcommand is fired. Here is the code. Sub SortGrid(source As Object, e As DataGridSortCommandEventArgs) RunQueryAndBind(e.SortExpression) End Sub Sub...
  11. TerryDad2

    Hide url of downloadable document

    I have a HyperlinkColumn that I want to completely hide the url from the client in both the browser and the code. I've got to prevent users from randomally trying other urls from the same folder to try to get other documents. I am picturing that the HyperlinkColumn would instead of going to a...
  12. TerryDad2

    How to force a document.write to display before processing more script

    I am trying to get a message displayed on the webpage before moving on to the next page. The simplified code is: <script language = &quot;vbscript&quot;> document.write (&quot;Processing Request&quot;) Function Process Select Case (parent.ButtonClicked) Case 0 location.href =...
  13. TerryDad2

    Form post with out a server; client side only

    I am trying to set up a series of forms that will create a query to a msaccess database located on a cd. I want to have forms that post to another page on the cd. The posting goes well, but on the next page, none of my attempts to get the posted data work. I have used request.form and get a...
  14. TerryDad2

    Unknown Runtime Error using .export from Excel

    I have a script to dynamically generate an excel chart and export a jpg for the asp page to display. Unfortunately, the line to export the jpg generates an Unknown Runtime Error (I have found that the .publish also does the same). I have not been able to find any solution. The asp code is on...

Part and Inventory Search

Back
Top