Search results for query: *

  • Users: Can I
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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?
  4. 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