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

    Microsoft Cursor Engine error '80040e21'

    Hi, I got this error from an ASP page when trying to update a recordset (here is how I opened it: rs.Open cmd, , adOpenDynamic, adLockBatchOptimistic) -----ERROR ----------- Microsoft Cursor Engine error '80040e21' Multiple-step operation generated errors. Check each status value...
  2. jn03

    Data input and back button

    Hi all, I have a form where users can enter some data and then submit. When they hit the browser's back button, I would like them to see the data they have entered and edit it. But, when they hit back, all the data in the textboxes is gone. How can I make the browser to cache all the imputs. Thanks
  3. jn03

    ASP.NET and Sybase database ?

    Can anyone show me how to connect to a Sybase database in ASP.NET? Thanks in advance.
  4. jn03

    Problem with accessing remote database on a network

    Hi all, I have my asp.net application on machine A and trying to access to the database on machine B on the same network. Can someone help me on how to configure both machines to make this work? Machine B already has ASPNET account which provides access rights. I also have set <identity...
  5. jn03

    Calling stored procedure from VFP database

    Hello, I'm having problem calling stored procedures from Visual FoxPro database. I got the following exception error: &quot;System.Data.OleDb.OleDbException: Unrecognized command verb&quot; Here is my code snipet: Dim oConn As OleDbConnection = New...
  6. jn03

    difference between Asp.Net FormsAuthentication and Session?

    Hi all, I want to implement an application which requires the users to log in the view several pages inside. To do this, I'm using session objects to keep track of the logged-in user between the pages. However I also see ASP.NET has the FormsAuthentication feature that seems to do the same job...
  7. jn03

    postback and value inside button method

    Hi all, Could someone help me to find a way to make the flag value which has been set in the btn_click methods to be used right in postback? (please see pseudo code below) What I want is, when I click btn2, flag is set to be false, so in postback, it will execute: if flag=false then do...
  8. jn03

    server.transfer and button event

    Hi, I use Server.Transfer in the &quot;btn_OnClick&quot; sub as shown below, and I have to press the button twice for the page to be redirected. The first time the button is pressed, the page does a postback and that's it. I have to press the button again in order to go to page2. It works fine...
  9. jn03

    smartNavigation and Netscape, and javascript

    Hi all, I know that smartNavigation property doesn't work with Netscape. Is there any workaround to make it work? I mean, I'd like to have something like smartNavigation to retain the scrollback position after a postback, but so far none of my workarounds using javascript has worked. Netscape6...
  10. jn03

    customize raw data before binding?

    Hi all, I want to modify raw data retrieved from the database before binding it to datagrid/datalist. For example, I have a date column with date and time format, something like &quot;06/04/2003 10:01:00 PM&quot; and I want to customize the date format, as well as get rid of the time, to...
  11. jn03

    Problem with multiple select statements and DataReader execution

    Hi all, Could someone please explain why the following doesn't work/works: Ok, I have 3 select statements in my aspx.vb file: sql1 - which is a long query sql2 - short query sql3 - longer than sql1 and have the same pattern as sql1 Then, I use ExecuteReader() method of DataReader to execute...
  12. jn03

    variable in select statement

    Hi all, In my cmdprint.click event, I'd like to pass in a variable to the select statement to dynamically sort the order of the cursor, so it looks like this: LPARAMETERS lcorder lcorder = ALLTRIM(STR(this.Parent.myorder)) && this.Parent.myorder is a number, such as 1 or 2,3,4... select *...
  13. jn03

    How to enable menu items?

    Hi, I have 2 menus, Customer and Help, in my application. Under these 2 menus there are submenus. When I first open my application, all the submenus are enabled, but if I open a form (from a submenu), then all the submenus are disabled. How can I enable them, especially the Help's submenus...

Part and Inventory Search

Back
Top