Hi, I hope someone out there can help me out, I have three files which i wan to use, in my global asax file i have subs which are called from the application start sub. i have a vb file (my code behind) where i want to call my application start i have tried
this on a normal aspx page and it seems to work with: DataViewClientBanner = Application("DataSetClientBanner").Tables("TEV200clientNames").DefaultView() but when i change this in line in the vb file to HttpApplication the compiler doesnt like this line and
gives me an error stating that the class system.web.httpapplication cant be indexed because it doesnt have a default property. WHAT DOES THIS MEAN and how do i solve it. to most of you this is propably and easy and st-upid question but i am but a mear mortal
which is new at this stuff. CAN anyone help me please? Zal any samples would be much appreicated as i learn best from looking at examples
Zalihe
Member
205 Points
110 Posts
HTTPApplication
Nov 03, 2003 02:33 PM|LINK
kaevans
Participant
1150 Points
230 Posts
Microsoft
Re: HTTPApplication
Nov 06, 2003 09:54 PM|LINK
DataViewClientBanner = HttpApplication("DataSetClientBanner").Tables("TEV200clientNames").DefaultView()Or are you saying that you are trying to use the following in global.asax?DataViewClientBanner = Application("DataSetClientBanner").Tables("TEV200clientNames").DefaultView()