Search

You searched for the word(s): userid:562426

Matching Posts

  • Re: Dropdown reset on associated label click

    If this is your code then you are not calling the correct function?? You are calling "GetDepartmentsDdl" but the function you are giving is called "GetDirectoratesDdl". If this is just an error can you post the correct code.
    Posted to Web Forms (Forum) by jpjaqua on 6/21/2005
  • Re: Dropdown reset on associated label click

    If clicking the label control fires a post back then you should be binding the drop down to its data source within a "not page.ispostback" if statement. If Not Page.IsPostBack Then DropDownList1.DataSource = GetDataSource() DropDownList1.DataTextField = "list" DropDownList1.DataBind() End If
    Posted to Web Forms (Forum) by jpjaqua on 6/20/2005
  • Re: Multiple User problem

    This should not happen. Do you have code?
    Posted to Security (Forum) by jpjaqua on 2/23/2005
  • Re: quirks of Login page

    http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=835715
    Posted to Security (Forum) by jpjaqua on 2/23/2005
  • Re: e-commerce...shopping cart...??

    It really depends. I tend to prefer vb.net for software that does not need to be on the web. If applications need to communicate over the web but do not need to be accessed by unknown users than I just use web services. You can pretty much do anything using asp.net that you can do in vb.net now. So it really is based on the users needs. One cool thing about web apps is that if you make a change you don't have to re-distribute the executables to everyone. I use windows forms, windows services and
    Posted to Getting Started (Forum) by jpjaqua on 2/23/2005
  • Re: Question about Login page-help needed urgently

    Did you add this to your config file? <location path="fregister.aspx"> <system.web> <authorization> <allow users="*" /> </authorization> </system.web> </location> It sounds like you need to be authenticated to view the fregister.aspx page so you are directed to the login page then once you are authenticated it sends you to the fregister page. So this should fix the problem.
    Posted to Security (Forum) by jpjaqua on 2/23/2005
  • Re: Retrieve User ID from Cookie

    I use: context.User.Identity.Name if you are talking about getting the identity from the auth cookie?? I try not to use session variables because they are not reliable even if you have a state server set up.
    Posted to Security (Forum) by jpjaqua on 2/22/2005
  • Re: Question about Login page-help needed urgently

    asp.net is probably the easiest way to create a login page. You problem does not make sense to me. The way it works. When a user tries to access a page they are automatically redirected to the login page specified in the web.config file. You can specify pages that do not require authentication so the users can register without login in. I prefer to build a login control and show it if users are not authenticated then I set the default login page to a session time out page, so if the users session
    Posted to Security (Forum) by jpjaqua on 2/22/2005
  • Re: class problems

    Try this. If this does not work than try checking your sql using query analizer: Dim connectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; DSN=xx" Dim dbConnection As New OdbcConnection(connectionString) Dim queryString As String = "SELECT * from images order by id desc" Dim dataSetr As New DataSet() Dim dataviewer As DataView Dim dataAdapter As New OdbcDataAdapter(queryString, dbConnection) dataAdapter.Fill(dataSetr) dataviewer = dataSetr.Tables
    Posted to Getting Started (Forum) by jpjaqua on 2/22/2005
  • Re: how to rename a text file

    I think the moveto technically copies the file, deletes it and pasts it to the specified directory and file name.
    Posted to Getting Started (Forum) by jpjaqua on 2/22/2005
Page 1 of 5 (44 items) 1 2 3 4 5 Next >