Click here to Skip to main content
15,898,817 members
Home / Discussions / Web Development
   

Web Development

 
NewsAbsolutely Free Flash Slide Show Pin
pankaj2773-Apr-09 22:22
pankaj2773-Apr-09 22:22 
GeneralRe: Absolutely Free Flash Slide Show Pin
Eddy Vluggen4-Apr-09 0:20
professionalEddy Vluggen4-Apr-09 0:20 
AnswerRe: Absolutely Free Flash Slide Show Pin
pankaj2774-Apr-09 22:10
pankaj2774-Apr-09 22:10 
GeneralRe: Absolutely Free Flash Slide Show Pin
Eddy Vluggen4-Apr-09 23:13
professionalEddy Vluggen4-Apr-09 23:13 
GeneralRe: Absolutely Free Flash Slide Show Pin
lithcause16-Apr-09 5:14
lithcause16-Apr-09 5:14 
Questionwhat is web service and how to consume a service into a web page ? Pin
hopyboy3-Apr-09 19:13
hopyboy3-Apr-09 19:13 
AnswerRe: what is web service and how to consume a service into a web page ? Pin
Yusuf4-Apr-09 2:20
Yusuf4-Apr-09 2:20 
QuestionNeed CSS help with aligning Scripts in Multiview Panel Pin
pityocamptes3-Apr-09 8:01
pityocamptes3-Apr-09 8:01 
Here is my CSS and source code. I CANNOT get the two scripts to line up side by side in the MultiView???? Why???? I have tried padding, absolute position, relative position, margins, etc. Help would be appreciated. Thanks!!!!!


#widget
{
	padding-top:20px;
	padding-left: 20px;	
	border: solid 2px white;
}

#widget1
{
	padding-top:20px;
	margin-left:300px;
	border: solid 2px white;	
}





<%@ Page Language="C#" MasterPageFile="~/Master/MasterPage.master" AutoEventWireup="true" CodeFile="Financials.aspx.cs" Inherits="Financials_Financials" ViewStateEncryptionMode="Always" %>


<asp:Content ID="myText" ContentPlaceHolderID="cphContent" Runat="Server">    
    <asp:MultiView ID="mViewMain" runat="server">
        <asp:View ID="CustomerView" runat="server">
            <asp:Panel ID="panelNavigationView1" runat="server"
                CssClass="TabContainer">
                <asp:Label ID="labOne" runat="server" 
                    Text="Customer Information" 
                    CssClass="TabItemActive"/>
                <asp:LinkButton ID="lnkb_DefaultBook" runat="server"
                    CssClass="TabItemInactive"
                    Text="Customer Book Selections"
                    OnCommand="LinkButton_Command"
                    CommandName="Book" />
                <asp:LinkButton ID="lnkb_DefaultCategories" runat="server"
                    CssClass="TabItemInactive"
                    Text="Customer Categories"
                    OnCommand="LinkButton_Command"
                    CommandName="Categories"/>
            </asp:Panel>
            <asp:Panel ID="panelView1" runat="server"
                CssClass="ContentPanel">
                <big><div id="widget">
                <script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script>if (WIDGETBOX) WIDGETBOX.renderWidget('b7341d7c-5c43-4ca1-b195-a262bee5dad4');</script><noscript>Get the <a href="http://www.widgetbox.com/widget/live-global-stock-market-ticker">Live Global Stock Market Ticker</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript>
           </div>
           <div id="widget1">
                <script type="text/javascript" src="http://cdn.widgetserver.com/syndication/subscriber/InsertWidget.js"></script><script>if (WIDGETBOX) WIDGETBOX.renderWidget('7989a535-3c46-42ca-a0c3-51a13260de4d');</script><noscript>Get the <a href="http://www.widgetbox.com/widget/index-futures-quotes-inocom">Index Futures Quotes - INO.com</a> widget and many other <a href="http://www.widgetbox.com/">great free widgets</a> at <a href="http://www.widgetbox.com">Widgetbox</a>!</noscript>
           </div></big>
            <asp:Button ID="view1Next" runat="server" Width="6em"
                Text="Next"
                CommandName="NextView" />
            </asp:Panel>
            &nbsp;&nbsp;
        </asp:View>
        
        <asp:View ID="BookView" runat="server">
            <asp:Panel ID="panelNavigationView2" runat="server"
                CssClass="TabContainer">
                <asp:LinkButton ID="lnkb_BookCustomer" runat="server"
                    CssClass="TabItemInactive"
                    Text="Customer Information"
                    OnCommand="LinkButton_Command"
                    CommandName="Customer" />
                <asp:Label ID="Label3" runat="server" 
                    Text="Customer Book Selections" 
                    CssClass="TabItemActive"/>
                <asp:LinkButton ID="lnkb_BookCategories" runat="server"
                    CssClass="TabItemInactive"
                    Text="Customer Categories"
                    OnCommand="LinkButton_Command"
                    CommandName="Categories"/>
            </asp:Panel>
            <asp:Panel ID="panelView2" runat="server"
                CssClass="ContentPanel">
            <asp:Button ID="view2Back" runat="server" Width="6em"
                Text="Previous"
                CommandName="PrevView" />
            <asp:Button ID="view2Next" runat="server" Width="6em"
                Text="Next"
                CommandName="NextView" />
            </asp:Panel>
        </asp:View>
        
        <asp:View ID="CategoriesView" runat="server">
            <asp:Panel ID="panelNavigationView3" runat="server"
                CssClass="TabContainer"> 
                <asp:LinkButton ID="lnkb_CategoriesCustomer" runat="server"
                    CssClass="TabItemInactive"
                    Text="Customer Information"
                    OnCommand="LinkButton_Command"
                    CommandName="Customer" />
                <asp:LinkButton ID="lnkb_CategoriesBook" runat="server"
                    CssClass="TabItemInactive"
                    Text="Customer Book Selections"
                    OnCommand="LinkButton_Command"
                    CommandName="Book"/>
                <asp:Label ID="Label4" runat="server" 
                    Text="Customer Categories" 
                    CssClass="TabItemActive"/>
            </asp:Panel>            
            <asp:Panel ID="panel3" runat="server"
                CssClass="ContentPanel">
            <asp:Button ID="view3Prev" runat="server" Width="6em"
                Text="Previous"
                CommandName="PrevView" />
            <asp:Button ID="view3First" runat="server" Width="6em"
                Text="Start"
                CommandName="SwitchViewByIndex"
                CommandArgument="0" />
            </asp:Panel>
        </asp:View>       
    </asp:MultiView>   
</asp:Content>

AnswerRe: Need CSS help with aligning Scripts in Multiview Panel Pin
Marc Firth6-Apr-09 21:54
Marc Firth6-Apr-09 21:54 
QuestionRecordset is returning -1 recordcount Pin
Kiran S. S.2-Apr-09 20:10
Kiran S. S.2-Apr-09 20:10 
AnswerRe: Recordset is returning -1 recordcount Pin
Yusuf3-Apr-09 9:15
Yusuf3-Apr-09 9:15 
QuestionRecordset is returning -1 recordcount Pin
Kiran S. S.4-Apr-09 3:51
Kiran S. S.4-Apr-09 3:51 
AnswerRe: Recordset is returning -1 recordcount Pin
TomS455-Apr-09 19:14
TomS455-Apr-09 19:14 
Questionalert error in sign-up form Pin
[N][Q][H]2-Apr-09 16:07
[N][Q][H]2-Apr-09 16:07 
AnswerRe: alert error in sign-up form Pin
Yusuf3-Apr-09 10:56
Yusuf3-Apr-09 10:56 
QuestionPlease Help I want Create Job Portal Like(www.Rozee.pk) Pin
IshtiaqueJ2-Apr-09 11:56
IshtiaqueJ2-Apr-09 11:56 
AnswerRe: Please Help I want Create Job Portal Like(www.Rozee.pk) Pin
EliottA3-Apr-09 10:24
EliottA3-Apr-09 10:24 
AnswerRe: Please Help I want Create Job Portal Like(www.Rozee.pk) Pin
Eddy Vluggen4-Apr-09 0:27
professionalEddy Vluggen4-Apr-09 0:27 
Questionproblem installing visual studio 2003 on vista home premium Pin
bapu28892-Apr-09 8:28
bapu28892-Apr-09 8:28 
AnswerRe: problem installing visual studio 2003 on vista home premium Pin
saanj28-Apr-09 21:56
saanj28-Apr-09 21:56 
Questioninvoking method using reflection Pin
NetQuestions2-Apr-09 7:47
NetQuestions2-Apr-09 7:47 
AnswerRe: invoking method using reflection Pin
SeMartens2-Apr-09 21:17
SeMartens2-Apr-09 21:17 
QuestionFrameset and css playing nice ... Pin
LimeyRedneck2-Apr-09 7:04
professionalLimeyRedneck2-Apr-09 7:04 
QuestionAjax/Javascript/PHP advise Pin
Bryant May2-Apr-09 3:37
Bryant May2-Apr-09 3:37 
QuestionAjax Pin
AR Revathi2-Apr-09 0:42
AR Revathi2-Apr-09 0:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.