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 TouchToneTommy 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: Blueie
  • Order by date
  1. Blueie

    Problem with 'Focus'

    Hello I have this in my logon.aspx.vb file: Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim strEmail As String = "" If Not IsPostBack Then strEmail = String.Format("{0}", Request.QueryString("strEmail"))...
  2. Blueie

    Log-in form errors

    Hello I am trying to create a simple log-in page but I am getting three green 'underlines' on this line: Dim sql As String = "SELECT * FROM university WHERE strEmail = '" & strEmail & "' AND [password] = '" & password & "'", ConnectionString The errors are under 1)& strEmail & (Used before...
  3. Blueie

    Where to put JS?

    Thanks, Chris, for the link and advice. Things are a bit clearer now but I will pop over to the W3 Schools. You are right about having to wait for answers. I actually contacted the person who created the circular progress 'bar', and he replied that he was unable to help with repositioning and...
  4. Blueie

    Where to put JS?

    Thanks again for explaining. So I could have this: HTML file <head> <style> .body { CSS position attributes } </style> </head> <body> <div class="body"> HTML attributes </div> <script> (function () { var n, id, progress; progress = new CircularProgress({ radius: 20...
  5. Blueie

    Where to put JS?

    Yes, it works for me but I was interested in how I could reposition it using CSS. Thanks
  6. Blueie

    Where to put JS?

    Sorry Chris I thought the link I posted would take you to the link. I have uploaded it here with all the relevant files: Link Thanks again
  7. Blueie

    Where to put JS?

    Hello I am trying to reposition the circular progress 'bar' that is displayed here: Link There is some JS at the end of that HTML test and a circular-progress.js file. I thought I could add something like document.getElementById('canvas') to the JS code (I have tried adding that to both the...
  8. Blueie

    Often, a user is required to type i

    It's a bit of both, JBenson, thanks for replying. I just wondered in which format Dim link As String = builder.Uri.ToString() the link is generated - number of characters, etc. The link above, that is...
  9. Blueie

    Often, a user is required to type i

    Often, a user is required to type in his email address in the case of a forgotten password. A message is sent to that address with a link for the user to click on in order to reset his password. I have something like this: Using conn As New OleDbConnection(ConnectionString) Using...
  10. Blueie

    Having some trouble with JS pop-up

    Hello I have a link on my Home page that is supposed to open a pop-up window (a HTML page smaller than the Homepage and you should see the Homepage behind the pop-up). When I click on the link on my Home page, I do get taken to the HTML pop-up page but the dimensions of that page are ignored...
  11. Blueie

    How to give pwd reset link an expiration time?

    So, clicking on the Forgotten Password link would trigger an insertion (not really an update because it may be the first time) of X amount of hours and that would be recorded in the timeLimit column? OK. Thanks. I am not sure I would be able to code that! I would need to display another...
  12. Blueie

    How to give pwd reset link an expiration time?

    Hello jbenson001 Thanks for replying. Once the site is up and running the passwords will be hashed/salted. Do you mean that adjacent to the uniqueCode column, I would have another column called, let's say, timeLimit, and that the whole column is a DateTime columm whose properties, I think...
  13. Blueie

    How to give pwd reset link an expiration time?

    Hello I am groping in the dark a little here. I am hoping to put together some code whereby a user receives a link in his inbox to reset his password. Following a couple of (outdated) tutorials, I have this in my code: cmd = New OleDbCommand("UPDATE university SET uniqueCode=@uniqueCode...
  14. Blueie

    06:22:06.9093: Referenced file '~/Scripts/_references.js' not found.

    Hello I am getting an odd message in Visual Studio 2013: 06:22:06.9093: Referenced file '~/Scripts/_references.js' not found. I am, in fact, looking at that very file in Solution Explorer now. How best to correct that message, please? Thanks
  15. Blueie

    Vector text question

    Hello I have the trial version of Corel Photo Paint 7 and I am trying to create a piece of text in vector format so that I can resize it, if necessary, without it becoming pixelated. How do I begin, please? Do I create the text in Corel Photo Paint 7 and save it in SVG format, and then export...
  16. Blueie

    Menu position

    Thanks to you both. Just working on it now.
  17. Blueie

    Menu position

    Hello I have a menu bar along the top which looks like this: I am trying to narrow slightly the gaps between each menu item while keeping it centered as in the screenshot. The CSS looks like this: ul#nav li a { padding: 9px 0 15px 0; /*padding: 15px 17px 6px 17px;*/ font: 90%...
  18. Blueie

    Displaying Errors

    The work you have done on your form on the homeloanpartnership is certainly impressive and works effectively. Well done! I will work my way through the code you have kindly provided, but it looks daunting! Thanks again.
  19. Blueie

    Displaying Errors

    I haven't tried it, no. Are there any workarounds?
  20. Blueie

    Displaying Errors

    Hello Yes, according to this site: Link 'required' can only be used with text, search, url, tel, email, password, date pickers, number, checkbox, radio, and file. So in my case, it would only be Name and Email (not the Message field) and the example they give is: <form action="demo_form.asp">...

Part and Inventory Search

Back
Top