Search results for query: *

  1. P

    SmartNavigation and keeping pages on top

    I have a web application written in VS2003 (VB.NET) and use SmartNavigation to stop long data entry pages from scrolling on postback, i.e. if I refresh the page based on something a user selects, the page position is maintained. When I pop up a report or help page in a new window, the new page...
  2. P

    Saving Files to a Local Drive from ASP.NET

    My ASP.NET application (VS 2003 and VB.NET) has the ability to export files in csv format and I can auto-save them to the web server but what I really want to do is use the HTMLInputFile control to allow the user to enter a new filename and directory on their local hard disk. When I click the...
  3. P

    Passing a web page as a parameter

    I need to dynamically search a web page and locate imagebuttons without showing the page. The routine that performs the search is in a shared class. Other code in the same shared class works correctly but the difference is that I'm trying to pass the web page as a parameter to the second...
  4. P

    SmartNavigation

    I have an ASP.NET (1.1) application with long data entry forms. To avoid postbacks going to the top of the page I have invoked the 'SmartNavigation' option in the page properties however when I then open a new window to display a dynamically-generated pdf file, the new page stays in the...
  5. P

    Opening a New Browser Window

    I'm trying to open a new browser window whenever the user selects a document from a list. The list is correctly populated but to demonstrate the problem I've hard-coded the file name in the following example: PrivateSub DisplayPageInNewWindow(ByVal PageName As String) 'Response.Write("<script...
  6. P

    Launching Applications from ASP.NET

    I can launch an application from VB.NET (VS2003) but the same code merely refreshes the browser window in ASP.NET, for example: Process.Start ("C:\Inetpub\wwwroot\ScottQualityControl\QP_050_files\ArtefactionCorporateProfile.pdf") NB: This is all on a single line in the application The file...
  7. P

    Restricting Drag Drop Functionality

    I have successfully implemented Drag Drop from a VB.NET Treeview Control onto a textbox but need to stop the user from dragging the wrong value into the right textbox, i.e. I have 3 treeview controls and corresponding textboxes but I don't want the user to drag from treeview1 to textbox2 or...
Back
Top