who know what leftpane in asp.net is ?

K

kevin

who know what leftpane is ? and assembly is right because this project come
from asp.net named portal.but I can't run it rightly.
help me/
following is the error:
Compilation Error
Description: An error occurred during the compilation of a resource required
to service this request. Please review the following specific error details
and modify your source code appropriately.

Compiler Error Message: CS0246: The type or namespace name 'LeftPane' could
not be found (are you missing a using directive or an assembly reference?)
source codes:
Line 32: // of the home page if the client is not yet
authenticated
Line 33: if ((Request.IsAuthenticated == false) &&
(portalSettings.ActiveTab.TabIndex == 0)) {
Line 34:
LeftPane.Controls.Add(Page.LoadControl("~/DesktopModules/SignIn.ascx"));
Line 35: LeftPane.Visible = true;
Line 36: }
 
S

Scott M.

"LeftPane" is something that you are referring to somewhere in your code. I
am not aware of this being a .NET item.
 
T

TJS

left pane is referring to a part of the web page.
look in the html portion of desktopdefault.aspx and you will see a <td
id="LeftPane" >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top