Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. TheCivic

    Basic XML Question from XML Newbie

    Hi everyone, Can someone please give me some advice? I have never wrote a xml file before and would like to know what nodes i should use. My xml file will contain 0, 1 or more actions, 0 or 1 comments, 0 or 1 locations. Each action will have a name, date and time. Each comment will just have...
  2. TheCivic

    Uploading with Master Pages

    Hi everyone, I have a FileUpload component on a master page, and for some reason, when i access this page from a PDA, the HasFile property is always false when i have selected a file. I can use the FileUpload component by itself and it works fine on any platform (desktop/PDA/laptop), but as...
  3. TheCivic

    Applications and session data

    hi everyone, I am new to asp.net and have built two asp.net applications/wizards that i need to put into my asp application. I know all about asp and asp.net not sharing session data etc, but was wondering why the asp.net ones wont. I had to open IIS and set both the folders that contain the...
  4. TheCivic

    TypeName or class not defined?

    ca8msm, as i said i am setting an objectdatasource, so none of that code is needed. Anyway, i have fixed the problem. Basically, i had to mark the folder as an application within IIS. I didnt know if this had to be done or not, cos i am adding ASP.NET pages with some existing asp pages. Does...
  5. TheCivic

    TypeName or class not defined?

    Also, not sure if this has anything to do with it, but if i try to publish the site, i get an error saying App_Web_**** could not be found.
  6. TheCivic

    TypeName or class not defined?

    I still dont know what u mean about declaring the variable/class. I am trying to set the datasource of the dropdownlist, and this datasource points at the function within my class.
  7. TheCivic

    TypeName or class not defined?

    Thanks for the reply so shortly. I have copied and pasted the example code, and that says the same thing about the TypeName not being defined. As for your question about declaring the instance on the page?? What do you mean by that? Is this a bug in Visual Studio 2005? i have done it before...
  8. TheCivic

    TypeName or class not defined?

    No problem, my datasource is as follows : <asp:ObjectDataSource ID="CompanyDataSource" runat="server" SelectMethod="GetCompanies" TypeName="eContrack" /> My class function is : Imports System.Web.HttpContext Imports Microsoft.VisualBasic Public Class eContrack Public Shared Function...
  9. TheCivic

    TypeName or class not defined?

    Hi everyone, I have made a shared public function within a class that returns a data table. When i set the selectmethod of an objectdatasource to a function, i get the error : The type specified in the TypeName property of ObjectDataSource 'ProjectDataSource' could not be found. Anyone know...
  10. TheCivic

    ASP.NET controls on PDAs

    Hi everyone, I have got a iPAQ hx2700, a XDA mini and a XDA Exec. I am creating an application which uses the normal ASP.NET server control linkbutton. Everything works when i use it in a normal web browser on a desktop PC. Everything works when i use the iPAQ hx2700 and the XDA mini. But...
  11. TheCivic

    Data Access Layer?

    BrianB, This is my first try at single objects and collections, and i am wanting to know the following. For the single object i have a stored procedure that accepts an ID, to get all the data. Now for the collection, the SQL is the same apart from the fact that i need to search for multiple...
  12. TheCivic

    Data Access Layer?

    I have setup the objects in 2 different classes, 1 is a single object called ob1 and the other is a collection class, which holds more then 1 ob1 class. ' sinle object defined as Dim a as new ob1(ID) ' collection object defined as SQL = "ID = 12 or id = 13 or id = 14" dim a as new...
  13. TheCivic

    Data Access Layer?

    Hi everyone, I was sondering if someone can point me in the right direction to the following : We currently have a web application in old asp that is used by our clients. Each client has there own database for there data. Now i am trying to rewrite the application so it is Object Orientated...
  14. TheCivic

    Panel control

    Does anyone know why the panel server control doesnt display using Pocket Internet Explorer?? According to microsoft Pocket Internet Explorer SDK, the panel control, which renders as a Div element should work. Anyone got any ideas?? My page code is as follows : <%@ Page Language="VB"...
  15. TheCivic

    Postback Invalid

    Hi guys, Hope everyone is well! I have a problem displaying the tree view on Pocket Internet Explorer. The tree displays and works fine using desktop browser, and expands nodes perfectly. The first time i load it up on Pocket Internet Explorer it displays fine, but then when i click a node...
  16. TheCivic

    Register client script

    I have made a reference to the page that i am loading on to, but now the control is being added to the page, but outside of the form tag. any ideas?
  17. TheCivic

    Register client script

    I call this class method from my page, any ideas on how to get it to work? or a possible work around?
  18. TheCivic

    Register client script

    Hi everyone, I am trying to register this client script but for some reason i cant access Page.ClientScript This is my code, it takes a datatable in and formats the data that i want. My concern is to find out how to get the javascript to register on the page Any help would be apprieciated...
  19. TheCivic

    mobile controls

    Our web application is currently too large (resolution) in order to fit onto a mobile device, so i think that we would need to create another layout for mobile devices. Any idea on what the best way is, to setup an application for both web users and mobile users? Does skins and themes have...
  20. TheCivic

    mobile controls

    Hi everyone, We currently have a web application on the internet and are now going to expand and make the pages available to mobile users. Am i right in thinking that in order to create a web page for a mobile (pda, wap phone etc) you dont have to use the mobile controls? Can anyone here...

Part and Inventory Search

Back
Top