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!

Recent content by GHOST24

  1. GHOST24

    Redirect from login

    ignor that just needed the System.Web.Security. before it
  2. GHOST24

    Redirect from login

    my system is not recognising FormsAuthenticationTicket sas it is not defined. is there a reference i need to load?
  3. GHOST24

    Redirect from login

    so i return a variable based on the admin account but what happens to this line to redirect it to another page. System.Web.Security.FormsAuthentication.RedirectFromLoginPage(usrtxt.Text, False)
  4. GHOST24

    Redirect from login

    not sure what you mean but i use the following method Webconfig file: <configuration> <system.web> <authentication mode="Forms"> <forms loginUrl="mylogin.aspx" /> </authentication> <authorization> <deny users="?" /> </authorization> </system.web> </configuration> stored proceedure: ALTER...
  5. GHOST24

    Redirect from login

    I have an app that i need to secure but i want to be able to redirect the main users to one page and admin users to another using sql query does anyone have any suggestions?
  6. GHOST24

    cant run in browser

    I had a problem with my pc last week and had to reload the os i have restored the data i am working on but when i try to open in browser i get the following error. Server Error in '/' Application. -------------------------------------------------------------------------------- Configuration...
  7. GHOST24

    Set the submit button focus so when user hits the enter key

    Like I said I'm a complete beginner so when you say the page load is this in the vb code or in the html? and at which point to i put the <script guage="javascript"> ?
  8. GHOST24

    Set the submit button focus so when user hits the enter key

    on button click the program checks the password against the sql table and returns a result of 0,1,2 or 3 ' test to see if password is filled in Dim intresult As Integer If Not pwd.Text = "" Then 'code here will try the password against the user id...
  9. GHOST24

    Set the submit button focus so when user hits the enter key

    The page is a login page the user selects is code from a drop down list that is populated by sql, He then enters a password and click the submit button if he hits the entre key it removes the password from he password box. there are three lables, a dropdown box and a submit button on the page.
  10. GHOST24

    Set the submit button focus so when user hits the enter key

    I have had a look at the threads on this site but they don't make sense to me i am a complete beginner with html and java. What i want is when the user hits the enter button it fires the submit button click event. here is the html code can someone please show me what code to put and where to put...
  11. GHOST24

    workgroup networking problem with sp2

    I have noticed thet i can map a drive but only by typing the full path this seems to point towards the broadcast being stopped when its searching for the computers on the network.
  12. GHOST24

    workgroup networking problem with sp2

    I am getting nowhere with this and need some expert help. I have a small network of three computers all running windows xp pro with service pack 2 I have just bought a new laptop and despite spending hours on it i can not access my network. The laptop connects through a wireless card to a Belkin...
  13. GHOST24

    tab stop confusion

    I have two programs running on the same web server the loggon screen on one will allow the user to hit the enter key when the password has been typed and tis executes the button command i did not write any code for this it just seems to work. on the second program it does not work at all how can...
  14. GHOST24

    copy and paste in excel

    I am trying to get the data from a sql table in to an Excel template using the copyfromrecordset method. The data goes into the Excel sheet but I want to display it vertically not horizontally, a friend has helped me so far but I can not make it work the data goes into the first range but does...
  15. GHOST24

    filter sql results in datagrid

    I do not know how to look at each cell as i have never done this before and cannot find any book examples, the datagrid is loaded with the page load event using the code below. sqlconnection1.open() sqldataadapter1.fill(ds1) sqlconnection1.close() DataGrid1.DataSource = ds1...

Part and Inventory Search

Back
Top