Search:

Type: Posts; User: SteveHi

Page 1 of 12 1 2 3 4

Search: Search took 0.11 seconds.

  1. Replies
    4
    Views
    1,849

    Re: Using 'Session'

    That's great katman, thanks you.

    I have given you some kudos but not sure it has registered.

    Regards
  2. Replies
    4
    Views
    1,849

    Re: Using 'Session'

    Hello katman

    Thank you for your reply.

    When the user logs in, he is redirected to userpage.aspx where he can upload files. It is the only reason for a user to log in. In that same...
  3. Replies
    4
    Views
    1,849

    Using 'Session'

    Hello

    I am trying to come to terms with 'Session' in vb.net and have this in my userpage.aspx.vb file:


    Protected Sub BtnLogout_Click(sender As Object, e As System.EventArgs) Handles...
  4. Replies
    3
    Views
    1,822

    Re: Changing from .NET 4.6 to .NET 4.0

    Many thanks to you both, topshot and NeedSomeAnswers.

    I will save my present version as suggested, and then change to 4.0 and save that, too. And retain my current hosting service.

    Thank you...
  5. Replies
    3
    Views
    1,822

    Changing from .NET 4.6 to .NET 4.0

    Hello

    I have a few aspx Web pages created in .NET 4.6 but I now understand that my Web hosting service can only host up to ASP.NET 4.0. I have known
    this particular hosting service for a couple...
  6. Re: Error: 'index.aspx' has not been pre-compiled - but it has

    Many thanks for the link, codemonkey.

    Regards
  7. Replies
    1
    Views
    2,102

    ASP.NET Identity in Web.config - VS 2017

    Hello

    In the Web.config file of the ASP.NET Identity template, ASP.NET Membership and ASP.NET Membership Profile are disabled. My small project uses Register.aspx and Logon.aspx files (another...
  8. Thread: Which server?

    by SteveHi
    Replies
    4
    Views
    2,321

    Re: Which server?

    I have downloaded Microsoft SQL Server Express LocalDB and it is installed here:


    C:\Program Files\Microsoft SQL Server\110\LocalDB\Binn\

    Then, in VS 2017, in Tools | Connect to a database |...
  9. Thread: Which server?

    by SteveHi
    Replies
    4
    Views
    2,321

    Which server?

    Hello

    I am trying to connect to a database as part of an attempt to use ASP.NET Identity for user registration and login aspx and aspx.vb files.

    I am not sure which server I am supposed to be...
  10. Replies
    0
    Views
    1,860

    VS - wrong path to file error

    Hello

    I am getting an error when I debug my code.

    Cannot find assembly 'C:\Users\Steve\Documents\...
  11. Replies
    2
    Views
    2,878

    Re: Debuggug pains - VS2017

    Thanks for that, jmcilhinney

    I am taking it that your VarChar, 100 is the maximum amount of characters allowed in my hashed column. Mine populates with 64 characters when the user registers.

    I...
  12. Replies
    2
    Views
    2,878

    Debuggug pains - VS2017

    I am attempting to debug the following code (logon.aspx.vb) in my Web forms project:


    Private hashed As String

    Protected Function Authenticate(strEmailValue As String, hashedValue As...
  13. Replies
    9
    Views
    4,003

    Re: Users unable to log-on - vb.net code

    Many thanks!
  14. Replies
    9
    Views
    4,003

    Re: Users unable to log-on - vb.net code

    Yes, sorry, I have found it:

    166303

    I probably haven't kept to the original VS text formatting when I have posted the text here, thinking it was easier if it were all left-aligned, but now I...
  15. Replies
    9
    Views
    4,003

    Re: Users unable to log-on - vb.net code

    Thanks for your reply.

    I haven't got that Pretty tool in my VS 2017 but, yes, there are online editors such as this one:

    http://www.aspindent.com/?indent

    I have placed a breakpoint next to ...
  16. Replies
    9
    Views
    4,003

    Re: Users unable to log-on - vb.net code

    Sorry, I don't seem to have copied the code faithfully.

    In the Validate function, I have:


    Protected Function Authenticate(strEmailValue As String, hashedValue As String) As Boolean

    ...
  17. Replies
    9
    Views
    4,003

    Users unable to log-on - vb.net code

    Hello

    I am able to register (register.aspx page) new users using the following code which populates 3 columns in my database: username, email, and hashed (for the password):


    Private Sub...
  18. Re: Format of the initialization string does not conform to specification.....

    Many thanks to you both for explaining that it is a reserved work.
  19. Re: Format of the initialization string does not conform to specification.....

    I have replaced the line I got the error for, namely


    Using connection As New OleDbConnection("connectionString")

    with


    Using connection As OleDbConnection = New...
  20. Re: Format of the initialization string does not conform to specification.....

    I have tried this:


    Private Sub CreateAccount(ByVal username As String, ByVal password As String, ByVal email As String)
    Dim hashedPassword As String = Crypto.HashPassword(password)

    ...
  21. Re: Format of the initialization string does not conform to specification.....

    I have tried this:


    Private Sub CreateAccount(ByVal username As String, ByVal password As String, ByVal email As String)
    Dim hashedPassword As String = Crypto.HashPassword(password)

    ...
  22. Replies
    4
    Views
    2,346

    Re: Why does VS2017 give me this server error?

    Many thanks!
  23. Format of the initialization string does not conform to specification.....

    Hello

    When I try to register a new user as part of testing in register.apx, I get the following error:



    which is followed by a lengthy Stack Trace. The error is on this line of my code:
    ...
  24. Replies
    4
    Views
    2,346

    Re: Why does VS2017 give me this server error?

    Hello NeedSomeAnswers

    Thanks for replying.

    This software is making a liar out of me!

    Yes, I have the latest version installed, which is 4.3.4, but yesterday when I loaded the page into my...
  25. Replies
    4
    Views
    2,346

    Why does VS2017 give me this server error?

    when version 4.1.0.0 does not exist. From Package Manager Console:



    I have searched in 'NuGet' and 'All' in the Package Manager Console and the file VS2017 is asking for is not available (if it...
  26. Re: BC30616: Variable 'username' hides a variable in an enclosing block.

    I have just copied and pasted an older version of the above (taking no notice of the bulb):


    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load

    ...
  27. Re: BC30616: Variable 'username' hides a variable in an enclosing block.

    Thanks si_the-geek for explaining about the block.

    The code aims to personalise a 'thank you' message to the user who has submitted a form. Because we don't know the name of the user, the form...
  28. BC30616: Variable 'username' hides a variable in an enclosing block.

    How do I resolve this error in my code, please (not even sure what it means):


    If Not IsPostBack Then

    Dim username As Object = Nothing
    username.Text = String.Format("{0}",...
  29. Re: Error 0x80131040: Could not load file or assembly 'DotNetOpenAuth.Core...'

    As per this discussion https://stackoverflow.com/questions/13942653/could-not-load-file-or-assembly-dotnetopenauth-core I have tried to remove


    <package id="DotNetOpenAuth.Core"...
  30. Re: Error 0x80131040: Could not load file or assembly 'DotNetOpenAuth.Core...'

    Hello

    Just to add that I have DotNetOpenAuth.Core.dll in Bin and DotNetOpenAuth.OAuth.Core" version="4.1.4.12333" targetFramework="net40" /> in packages.config.

    Not sure if that helps.
  31. [RESOLVED] Error 0x80131040: Could not load file or assembly 'DotNetOpenAuth.Core...'

    Hello

    How would I overcome this server error, please?

    Could not load file or assembly 'DotNetOpenAuth.Core, Version=4.1.0.0, Culture=neutral, PublicKeyToken=2780ccd10d57b246' or one of its...
  32. Replies
    2
    Views
    3,492

    Re: Positioning a button/link

    Many thanks again, kfcSmitty. Top class

    Steve
  33. Replies
    2
    Views
    3,492

    Positioning a button/link

    Hello

    I have this on my page:

    163883

    I am trying to widen the distance between the 'This is Home....' and the 'Down' button so that the button is about 150px (or its em equivalent) from the...
  34. Replies
    7
    Views
    7,252

    Re: VS 2017 and CSS validation errors

    Yes, well it's VS 2017 that refers to CSS 4.

    Thanks
  35. Replies
    7
    Views
    7,252

    Re: VS 2017 and CSS validation errors

    Hello sapator

    Thanks for your post.

    They don't seem to be affecting the page(s), no, so I will ignore them.

    Thanks!
  36. Replies
    7
    Views
    7,252

    Re: VS 2017 and CSS validation errors

    Thanks for sharing. It seems that I already have Web Essentials 2017, so that is not the remedy for these CSS errors.
  37. Replies
    7
    Views
    7,252

    VS 2017 and CSS validation errors

    I have a couple of external CSS stylesheets that are generating a few errors in VS 2017 such as: -ms-justify-content (Validation CSS 4.0) "-ms-justify-content" is not a known CSS property name and...
  38. Replies
    6
    Views
    3,790

    Re: Placing date over movie

    163809

    Yes, it's there now.

    I will have to read up on z-indexes!

    You have been a great help. Thanks
  39. Replies
    6
    Views
    3,790

    Re: Placing date over movie

    Using this:


    <div class="myDate">

    Hello

    <!-- <asp:Label ID="Label1" runat="server" CssClass="labelStyle" Text="Label"></asp:Label> -->

    </div>
  40. Replies
    6
    Views
    3,790

    Re: Placing date over movie

    Thanks kfcSmitty

    If I do this:


    .myDate {
    position: absolute;
    top: 0;
    right: 0;
    padding:10px;
Results 1 to 40 of 470
Page 1 of 12 1 2 3 4



Click Here to Expand Forum to Full Width