Specifying Different Page Base Classes For Different Directories In Web.config File?

Mar 17, 2010

I have a website (coded in vb.net) with an "admin" section (the admin section being a folder in the actual site)... So in every page of the site I'm using my own custom class as the page base (which has been set in the web.config file) but I want to inherit from different class for the files in the "admin" folder... Is there any way to inherit different classes for pages in different folders using the web.config or some other equally as global method? (meaning some other way than inheriting on a per page basis.)

View 1 Replies


ADVERTISEMENT

Derived Classes Cannot Raise Base Classes

Jul 10, 2009

I m trying to raise Click event of Textbox explictly but I m getting "Derived classes cannot raise base classes" error.[code]....

View 1 Replies

.net - Events In Base Classes?

May 19, 2009

i have a base class which declares the event StatusTextChanged. My child class, of course cannot directly raise this event.

[Code]...

View 5 Replies

C# - Using Many Classes In GUI That Inherit From A Base?

Oct 20, 2010

I have classes setup similar to this:

<DataContract()> _
Public MustInherit Class SystemTaskProcessBase
Public MustOverride ReadOnly Property Name() As String
Public MustOverride ReadOnly Property Description() As String
Public MustOverride Property Result() As SystemTaskResult

[Code]...

I need to use these classes on the client system, but also need to be able to create these "tasks" through a management interface. Each class (Task) that inherits the base, could have its own properties that are unique to each class, but at the same time, share the same common base class properties. For example, the above shows a reboot task and a delete file task, the delete file task needs to know which file to delete, so has a property for that. But the reboot task does not need this property. So when the management application is creating these tasks, it shouldn't provide a text box for the file property for the reboot task. There may be more tasks created at a later date with completely different properties.

How would I go about providing the WinForms management application a way to enumerate each class into a ListView for example, and allowing the user to create these tasks and filling in the dynamic properties that each class would have? Desired functionality would be to create a task form that creates dynamic controls available for the properties as needed, depending on the public properties in each class, but at the same time have the base class properties available as well.

View 1 Replies

Base Classes On Proxy Objects

Sep 25, 2011

I have a webservice that is wrapped up by a data access object and is accessed by many different UI controls.

The proxy objects look something like this:

Public Class WebProxyObject1
' Common properties, there are about 10 of these
Public Name As String

[Code]....

View 1 Replies

Make Base Interface For Generic Classes?

May 25, 2010

I'm trying to create a base interface for a class of mine that uses generics. However, I cannot figure out how to declare a property of the interface when its type won't be defined until the class is initialized.

To clarify, consider List(of T), which according to msdn, implements IList (among other things). Note that IList is not the same as its generic counterpart IList(Of T). So that mean any List(of T) can be converted to IList, which simply returns an object for its items. That's what I want to do with MyClass(of T), be able to cast it as IMyClass regardless of what T is.

But when I try such as:

Interface IMyClass
Prop A as Object
Class MyClass(of T) Implements IMyClass
Prop A as T Implements IMyClass.A

I get a signature error for the last line, even though object is broader than T. What am I doing wrong, or how exactly did Microsoft manage to make List(of T) implement IList?

View 9 Replies

VS 2008 Casting Subclasses, Base Classes?

Jun 26, 2010

I am a VB6 programmer learning VB.Net and am having trouble with the following concept.

[Code]...

View 4 Replies

Force Every Page To Inherit From A Base Page?

Jan 14, 2011

I have a web app that has a base page.Each page needs to inherit from this base page as it contains properties they all need as well as dealing with the login rights.My base page has some properties, eg: IsRole1, IsRole2, currentUserID, Role1Allowed, Role2Allowed.On the init of each page I set the properties "Role1Allowed" and "Role2Allowed".[code]Should this functionality be in the base page or should it somehow be in the master, and if so how would I get access to all the properties if it was?As there are multiple people working on this project and creating pages some are forgetting to inherit from this basepage, or call the base pageload when overriding it.Is there any way to force them to do this?

View 4 Replies

[2008] Base Class Inherited By 2 Derived Classes

Jan 30, 2009

i've finally got round to learning about classes and inheritance, but i'm not sure how to proceed. i have a base class Employee, which is inherited by 2 derived classes. how do i use the same Employee class in both derived classes? obviously if i write a sub new for both of them + declare a new Employee class, they won't be using the same class. heres my Employee class:

[Code]....

View 7 Replies

VS 2005 - How To Make Custom Base Classes Available To Future Programs

Oct 22, 2010

I have written multiple programs in the past that deal with cad data. Points, lines, arcs, etc. For each program I ended up creating slightly different versions of some really base classes like a class that defines a point:

<Serializable()> Public Class Point
Public x As Double = 0
Public y As Double = 0
Public z As Double = 0
End Class

My question is how would I use that class in such a way that it could be in a namespace and imported into any future project that I write?

View 2 Replies

Design Patterns - Inheritance - Do All Properties In The Derived Classes Have To Be Declared In The Base Class

Aug 8, 2011

Background:I have a base class and several inherited derived classes. The derived classes don't always need to have the same properties. If any properties are shared among the derived classes, those properties would live at the base class level ('Contents', for example).Similarly, GoodDocument below has 'GoodThings' but would not want/need to have 'BadThings'.I want to treat instances of both 'GoodDocument' and 'BadDocument' as type 'Document'

public mustinherit class Document
public property Contents as string
public sub new()...

[code]....

View 3 Replies

C# :: Validate Dot Net Application Config File(ex, App.exe.config) On Console?

Jan 18, 2010

is there any tool to validate configuration file?

View 1 Replies

C# - Using A User Control In A Base Page Class

May 21, 2009

I have a base page class that inherits from Page. We'll call it SpiffyPage. I also have a user control called SpiffyControl. I then have an aspx page, ViewSpiffyStuff.aspx, that inherits from SpiffyPage. On page load, the SpiffyPage class is supposed to inject a SpiffyControl into the aspx page. The problem is that SpiffyControl is a user control, and to instantiate that in the code behind one has to access the ASP namespace, sort of like: ASP.controls_spiffycontrol_aspx MyControl;

But SpiffyPage isn't an aspx page, it's just a base page, and as such I can't access the ASP namespace, and I therefore can't instantiate a SpiffyControl in order to inject it. How can I achieve my goal?

Edit: One important point is that I must have a reference to the actual control type so I can assign values to certain custom Properties. That's why a function like LoadControl, which returns type Control, won't work in this case.

View 11 Replies

Inheret A Base Class Control And Include That In An Asp Page?

Sep 7, 2011

I didn't realise there was a specific vb.net for asp section in the forum. I'm not having much luck getting the problem solved in that other subforum.

View 1 Replies

C# - Redirect To Root Login Page From Web.config

Jun 3, 2011

I am redirect user to loging page when session expires. Login.aspx is in root. I declared path like this in web.config file.

[Code]...

It is working for all root .aspx pages. But it not working for sub folders pages like Reporting eport.aspx. So how to manage redirect page (Login.aspx) for root .aspx pages and sub folder .aspx pages?

View 4 Replies

Can't Add Some Of VB Classes To Aspx Page

Oct 27, 2009

I have 3 vb classes and I am trying to add them to my aspx vb page. I try to do

Dim Class1 as new class1 but only one of them works, the other 2 do not work. I made a sample class and put the following in it:

Public Class test
Public Sub test (byref test as string)
test = 5
end sub
End Class

Then I went and tried to do Dim test as new test but it doesn't work, what am I doing wrong? The other class works fine and I don't know why this one wouldn't.

View 3 Replies

C# - Handling Master Page Panels Within Base Control Class?

May 30, 2012

I have admin module. This module have one master page which has the no of panels at left side. I have to make this panels visible and invisible with base control class which is constructed in VB language. I'm working with asp.net 2.0 with c# web site.

how do i construct this base control class and manage panels with Master Page on link button click event.

View 1 Replies

VS 2010 : Listing Directories Inside Directories?

Jul 29, 2011

This is currently the code I am using.

Dim fileList As Collections.ObjectModel.ReadOnlyCollection(Of String) = My.Computer.FileSystem.GetFiles(FolderDialog1.SelectedPath, FileIO.SearchOption.SearchTopLevelOnly)
For Each topLvlFile As String In fileList

[code]....

The above code reads all the files & directories in a selected path. It ignores any hidden folders, like it suppose to. Except it doesn't ignore folders inside of the hidden folders that it finds & I need it to.I can't quite wrap my head around how to make it ignore all folders & files inside of a hidden folder that it find.

View 3 Replies

V B 2008 Express Book - Can't Connect To The "Service-Based Data Base" Or To The "Linq To Sql Classes"

Jan 6, 2010

I can't connect to the "Service-Based Data Base" or to the "Linq To Sql classes". I tried all that I've read in the Forums for days : ( I removed the VB 2008 and SQL 2205-2208, then upload VB 2008 from my CD only. I'm starting a Web Technology class in 2 weeks, and the complition of the book is my entry requirement.

View 4 Replies

Making Directories Within Directories Using For Loop

May 3, 2010

[Code]....

it just creates 1 folder but not other folders with in folder.

View 1 Replies

Get Directories From Txt File

Sep 1, 2011

I need a code. How i can to verify if files of txt exist ? I have a txt file with a directory on each line and I want to verify for all of them. Example:

[Code]...

View 1 Replies

Search Directories For A File?

Aug 12, 2009

I have an issue with avoiding this exception and trying to continue on with my code.im trying to search directories for a file. this is my code

vb.net
Dim As FileInfo() = d.GetFiles()'Errors here
Dim fFile As FileInfo
For Each fFile In Files
If Not fFile.Attributes = FileAttributes.System Then
If fFile.Extension = Extension Then

[Code]...

It's the files located in the C:System Volume Information Directory.How can i avoid the exception but continue on. I can't put a if then statement around the variable declaration. because then i can't use the variable. And catching the exception just causes my routine to stop.

View 9 Replies

WithEvents Variable 'PreviousPage' Conflicts With Property 'PreviousPage' In The Base Class 'Page' And Should Be Declared 'Shadows'?

Feb 1, 2012

I am converting an application from vb.net 2003 to 2005. I got the following warning and need help how to resolve it. withEvents variable 'PreviousPage' conflicts with property 'PreviousPage' in the base class 'Page' and should be declared 'Shadows'

View 1 Replies

Browse Directories To Save A File

Nov 15, 2011

I am writing a program that should allow the user to press a browse button to browse their directory and save a text file with the form information they wrote in.

View 1 Replies

How To Retrieve File Listings In Directories

Feb 3, 2012

I am wanting to retrieve all the files in some directories. Here is my original code:
Private Function Search(path As String, Recursive As Boolean) As Boolean
Dim dirInfo As New IO.DirectoryInfo(path)
Dim fileObject As FileSystemInfo
If Recursive = True Then
For Each fileObject In dirInfo.GetFileSystemInfos()
[Code] .....

This code works well, yet it returns some directories and I am wanting to only return files. I tried this code:
Private Sub Search(ByVal path As String, ByVal Recursive As Boolean)
if not Directory.Exists(path) then Exit Sub
Dim initDirInfo As New DirectoryInfo(path)
For Each oFileInfo In initDirInfo.GetFiles
[Code] .....

However, I get the following error:
Access to the path 'C:UsersSimonAppDataLocalApplication Data' is denied.

I have added this module to get it working:
Imports System.Security.Principal
Module VistaSecurity
'Declare API
[Code] .....

View 1 Replies

Read File Md5 In A Given Directories In A Listbox?

Nov 26, 2010

I have a situation where i get a list of directories link for files in a listbox. let say i hav 5 links of diectories of a file in the listbox. how do check each directories for their md5 in the listboxt and have the value of the retrieve md5 in another new list box. i want to create a md5 file checker or scanner. need all the expert help on this cause i have been coding this program a month ago using visual basic 2010 express. i need a list of working code on my failing program...

View 9 Replies

Scan File In Directory And Sub-directories?

Feb 19, 2011

I want to be able to scan a folder and its sub directories for all the files that exist in it. the results are then fed into a list box or any similar control[code]...

View 2 Replies

The Input Is Not A Valid Base-64 String As It Contains A Non-base 64 Character, More Than Two Padding Characters

Jun 3, 2011

I am getting following error when I am trying to use Convert.FromBase64String "The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or a non-white space character among the padding characters."

Dim payloadBytes = Convert.FromBase64String(payloadBase64)

Basically when my facebook registration form [URL]mphone field has a dash in it and encoded string is posted to other page and I am trying to decode it there which creates this error. Basically I am trying to extract data from Facebook Signed Request.

View 3 Replies

File I/O And Registry :: Finding All Folders Path In All Directories?

Jul 19, 2011

i wanna list all the path of every folders contained in a main folder in a listbox Here's my problem

For Each level1 As String In My.Computer.FileSystem.GetDirectories("C:Documents and SettingsAll UsersDesktopdatabase")
ListBox1.Items.Add(level1)
Next

[Code]...

View 3 Replies

List Directories And Files And Write To A Text File?

Jan 7, 2009

display files within a directory and subdirectories and write these directories and their files to a text file.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved