Search results for query: *

  • Users: Can I
  • Order by date
  1. Can I

    relative path to data base in web.config

    yes, that's the simplest solution ;) // ok, I found nicer solution: HttpContext.Current.Server.MapPath :)
  2. Can I

    relative path to data base in web.config

    I didn't know that, it's a good idea when you try it form within aspx site, but in my case it doesn't work. Consider this solution structure: solution - web site // contains all aspx and web controls - class library project // contains the code, DAOs in particular - class library...
  3. Can I

    relative path to data base in web.config

    not really, it is reslved to C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\App_Data\BookStore.mdb and the Solution's files reside in C:\Documents and Settings\Can I\Pulpit\asp.net\BookStore
  4. Can I

    relative path to data base in web.config

    hello, I'm setting a connectionString for my app <appSettings> <add key="connectionString" value="Provider=Microsoft.Jet.OLEDB.4.0;Ole DB Services=-4; Data Source=C:\Documents and Settings\Can I\Pulpit\asp.net\BookStore\App_Data\BookStore.mdb"/> </appSettings> and I...
  5. Can I

    strongly typed ArrayList - possible?

    thx :) .....
  6. Can I

    strange problem when casting

    hello, I'm creating an instance of ShoppingCart class when session starts: <%@ Import Namespace="Code.business.shopping_cart" %> ... Sub Session_Start(ByVal sender As Object, ByVal e As EventArgs) ' Code that runs when a new session is started Session("shoppingCart") = New...
  7. Can I

    strongly typed ArrayList - possible?

    I'm doing .NET project on my uni and the lecturer is unfortunatelly a bit old fashioned maybe if I find free hosting for project written in .NET2.0 he'll let me go with it, because uni has some older version istalled
  8. Can I

    strongly typed ArrayList - possible?

    hello, I want to make a data provider out of ArrayList containing Author class instances, and to do that I need that list to be strongly typed. Is there a way to achive it in VB.NET?
  9. Can I

    problem with interface implementation

    true, true ;) I'm used to eclipse IDE and I hope I can find some of its funcionality in MS Visual series
  10. Can I

    problem with interface implementation

    oh, that's Interface keyword that was missing. I would have never noticed that, thanks!
  11. Can I

    problem with interface implementation

    hello, I'm using Visual Web Developer and am just beginning with VB.NET. I've came accross a strange problem - I have DAO inteface and want to implement it: Imports model Imports Microsoft.VisualBasic Namespace dao Public Interface BookDAO Function findAllBooks() As ArrayList...
Back
Top