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 strongm 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
  • Content: Threads
  • 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?

    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...
  4. 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...
  5. 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...
  6. 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...
  7. 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
  8. 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...
  9. 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%...
  10. Blueie

    Displaying Errors

    Hello I have a contact form here: Link If a user does not complete a field, a red text message appears onscreen. And that appears quite neatly. But if all fields are missed as in the attachment in this link: Link the page looks untidy and disorganised. What would be the best way - I prefer...
  11. Blueie

    Directing user to a URL

    Hello I have some JS that checks form field validation on a Web page, and it does so effectively, and here is the part that deals with the Submit button: $("#contact_submit button").click(function(event){ var form_data=$("#contact").serializeArray(); var error_free=true; for (var input in...
  12. Blueie

    Naming conventions

    Hello I am getting an error which, I suspect, is related to this: If errorCount = 0 Then Set ObjSendMail = Server.CreateObject("CDO.Message") ObjSendMail.To = WebmasterEmail 'recipient ObjSendMail.BCC = myCopy 'other recipient ObjSendMail.From = name 'sender ObjSendMail.From = email 'sender...
  13. Blueie

    Renaming aspx files

    Hello I have a number of aspx files that I use only for testing and some of these aspx files have a variety of different names. For example, I have 'thank you' aspx files - to thank users for registering - called thank_you_copy1.aspx and thank_you_copy2.aspx. At some point, I will compile them...
  14. Blueie

    Safari not rendering font-size correctly

    Hello I am working on a Web site here: Link This is the site with 14px-size text in IE10 (as it should look): and this is the same page in Safari on Windows (as it shouldn't look): Does Safari require any special coding in order to be able to see the font at 14px? Thanks
  15. Blueie

    Positioning Twitter box?

    Hello I have a page still in the making here: Link I was hoping to narrow that Twitter box and have it right-aligned so that it is about an inch from the right-hand side, consistent with right spacing here: Link and not left-aligned as it is at the moment. I have nothing that conditions the...
  16. Blueie

    Connecting to Access DB

    Hello Can I ask, please, that someone passes their eye over this to see that I have got it right and that it does what it is supposed to do which is: a) connect to the database; b) open it; c) check that the email address entered by the user is the same as in the Access email column called...
  17. Blueie

    Pulling menu closer to the top?

    Hello I am having some trouble pulling my menu and text closer to the top of the screen by about 20px: Link I have tried playing about with the menu, but to no avail. Thanks!
  18. Blueie

    XML delimiter question

    Hello I have validated my XML file and continue to get the following error with this: </siteMapNode> The validator (I have tried a couple) informs me that 'The end-tag for element type "siteMap" must end with a '>' delimiter. Haven't I inserted a '>' delimiter? This is the code: <?xml...
  19. Blueie

    Changing location on screen?

    Hello I have some JavaScript which produces a circular progress bar in percentages: <script src="../circular-progress.js"></script> (function () { var n, id, progress; progress = new CircularProgress({ radius: 20 })...
  20. Blueie

    Limiting the size of an uploaded file

    Hello I have the following script to upload files: Protected Sub btnUpload_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnUpload.Click If FileUpload1.HasFile Then Try FileUpload1.SaveAs("C:\Uploads\" & _...

Part and Inventory Search

Back
Top