Search

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

Matching Posts

  • Re: Get the Content of the Form to the .mdb Database !

    That's the most common error when starting with Access http://www.mikesdotnetting.com/Article/74/Solving-the-Operation-Must-Use-An-Updateable-Query-error
    Posted to Web Forms (Forum) by hans_v on 11/23/2009
  • Re: file-based membership?

    [quote user="guenavan"] But this was my original inquiry: to enagage file-based membership without any drivers or additional services/programs/components being installed (used). [/quote] To use a mdb file to store data, you don't need to install any service/program/component. Jet is installed as part of the Windows Operating System on XP, Server 2000, 2003, 2008 and Vista. Yes, the 'ASP.NET' user needs modify rights on the folder where the mdb file is in, but I don't see
    Posted to Security (Forum) by hans_v on 11/23/2009
  • Re: SQL Query Help

    [quote user="Mikesdotnetting"] I would always use JOINS. As to the difference between them, I'm not sure. A colleague of mine thought your initial effort might be prone to error in certain circumstances (he said if more than one row was returned in a sub-select) but I can't say I have ever experienced this, mainly because I have never used that approach. Maybe someone else has some insight to offer? [/quote] JOINS will definitly perfom better, especially with large amounts of records
  • Re: Get the Content of the Form to the .mdb Database !

    Are you sure you gave the right user permissions? Which user is returned by Environment.Username? And did you give this user Modify rights?
    Posted to Web Forms (Forum) by hans_v on 11/23/2009
  • Re: Get the Content of the Form to the .mdb Database !

    Move line 20 to the top, so you know which user needs to have MODIFY rights on the folder
    Posted to Web Forms (Forum) by hans_v on 11/23/2009
  • Re: text decoration in asp:button

    Use a normal HTML Button instead: <button id="Button2" runat="server" onserverclick="Button2_Click" accesskey="A"><span style="text-decoration:underline;">A</span>dd</button>
    Posted to Web Forms (Forum) by hans_v on 11/22/2009
  • Re: Gridview images when stored on server

    You need to use a generic handler (.ashx file). Add a new generic handler file called image.ashx, and in the ProcessRequest Method write the following code: Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest 'Write code to retrieve the server path Dim serverpath As String = "F:\Data\Images\" Dim fullpath As String = serverpath + context.Request.QueryString ("image") Dim imageFile As IO.FileInfo = New IO.FileInfo(fullpath) context
    Posted to Data Presentation Controls (Forum) by hans_v on 11/22/2009
  • Re: Login program

    http://www.asp.net/learn/security/
    Posted to Security (Forum) by hans_v on 11/22/2009
  • Re: Get the Content of the Form to the .mdb Database !

    Read this: http://www.mikesdotnetting.com/Article/78/AccessDataSource-SqlDataSource-and-connecting-to-Access-databases-in-ASP.NET http://www.mikesdotnetting.com/Article/26/Parameter-Queries-in-ASP.NET-with-MS-Access http://www.mikesdotnetting.com/Article/54/Getting-the-identity-of-the-most-recently-added-record
    Posted to Web Forms (Forum) by hans_v on 11/22/2009
  • Re: Get the Content of the Form to the .mdb Database !

    [quote user="tugberk_ugurlu_"]I will read them but can anyone provice me the code?[/quote] If you want somebody to do your work them hire a developer. These forums are meant to help on the way and when you have any specific problems try to resolve them. The links I gave you will tech you how to conect to an Access database, insert records into a table the right way using parameters and retrieve the (unique) recordID, which is exactly what you're asking. All you need to do is translate
    Posted to Web Forms (Forum) by hans_v on 11/22/2009
Page 1 of 144 (1440 items) 1 2 3 4 5 Next > ... Last »