Click here to Skip to main content
15,898,035 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: SqlDataSource - Modify table without primary key Pin
Keith Barrow29-Nov-10 7:39
professionalKeith Barrow29-Nov-10 7:39 
GeneralRe: SqlDataSource - Modify table without primary key Pin
musefan29-Nov-10 8:32
musefan29-Nov-10 8:32 
AnswerRe: SqlDataSource - Modify table without primary key Pin
T M Gray29-Nov-10 11:41
T M Gray29-Nov-10 11:41 
AnswerRe: SqlDataSource - Modify table without primary key Pin
Amar Chaudhary29-Nov-10 15:59
Amar Chaudhary29-Nov-10 15:59 
AnswerRe: SqlDataSource - Modify table without primary key Pin
Hanzaplast30-Nov-10 4:23
Hanzaplast30-Nov-10 4:23 
QuestionGridView OnClick and OndblCick Attributes in RowDataBound Pin
vishnukamath29-Nov-10 3:00
vishnukamath29-Nov-10 3:00 
AnswerRe: GridView OnClick and OndblCick Attributes in RowDataBound Pin
Hanzaplast29-Nov-10 4:26
Hanzaplast29-Nov-10 4:26 
QuestionHow to remove the space which is causing because of ajax tab container? Pin
Shankaranarayana Thanthry28-Nov-10 22:59
Shankaranarayana Thanthry28-Nov-10 22:59 
Hi,
I am new to asp.net.I am using ajaxtabcontainer and ajax tabpanel to generate 4 tabs in the aspx page.But here after the tabs some extra space is generated and that has to be removed.Actualy i have written a code for sitemap.So in between tabs and sitemap space should not be present.I have tried with valign="bottom" but it didnot help.Could you please help me in this regard.


I have pasted my aspx code below.

<pre><table cellpadding="0" cellspacing="0" border="0" >


<!-- Ajax tab container -->

<tr style="background-color: Transparent;" valign="bottom" >
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<ajaxToolkit:TabContainer ID="tabcontainer" runat="server" BorderWidth="0" CssClass="ajaxtab">
<td width="50">
&nbsp;&nbsp;&nbsp;
</td>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td>
&nbsp;&nbsp;&nbsp;
</td>

<td valign="bottom">

<ajaxToolkit:TabPanel ID="tabAdmin" runat="server">
<HeaderTemplate>
<div>
<asp:ImageButton ID="ibtnAdmin" runat="server" Height="100%" ImageUrl="/images/Tabs/admin_blue.jpg"
OnClick="ibtnAdmin_Click" />
</div>
</HeaderTemplate>
</ajaxToolkit:TabPanel>
</td>
<td>
&nbsp;
</td>
<td valign="bottom">
<ajaxToolkit:TabPanel ID="tabConfiguration" runat="server">
<HeaderTemplate>
<div>
<asp:ImageButton ID="ibtnConfiguration" runat="server" Height="100%" ImageUrl="/images/Tabs/configuration_blue.jpg"
OnClick="ibtnConfiguration_Click" />
</div>
</HeaderTemplate>
</ajaxToolkit:TabPanel>

</td>
<td>
&nbsp;
</td>
<td>
&nbsp;
</td>
<td valign="bottom">
<ajaxToolkit:TabPanel ID="tabReports" runat="server">
<HeaderTemplate>
<div>
<asp:ImageButton ID="ibtnReports" runat="server" Height="100%" ImageUrl="/images/Tabs/report_blue.jpg"
OnClick="ibtnReports_Click" />
</div>
</HeaderTemplate>
</ajaxToolkit:TabPanel>
</td>
<td>
&nbsp;
</td>
<td valign="bottom">
<ajaxToolkit:TabPanel ID="tabSimulation" runat="server">
<HeaderTemplate>
<div>
<asp:ImageButton ID="ibtnSimulation" runat="server" Height="100%" ImageUrl="/images/Tabs/simulation_Blue.jpg"
OnClick="ibtnSimulation_Click" />
</div>
</HeaderTemplate>
</ajaxToolkit:TabPanel>
</td>
<td width="50">
&nbsp;&nbsp;&nbsp;
</td>
<td>
&nbsp;&nbsp;&nbsp;
</td>
<td>
&nbsp;&nbsp;&nbsp;
</td>

</ajaxToolkit:TabContainer>
</tr>
</table>
</div>
</td>
</tr>
<tr valign="top">
<td align="center" colspan="2" valign="top">
<div id="divSiteMap">
<table class="SiteMapBars" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="right" valign="middle">
<table border="0" width="100%" cellpadding="6" cellspacing="0">
<tr>
<td align="left" valign="middle">
<asp:SiteMapPath ID="smpLinks" runat="server" Font-Names="Verdana" Font-Bold="true"
Font-Size="X-Small" PathSeparator=" &nbsp;&nbsp;>>&nbsp;&nbsp; ">
<PathSeparatorStyle Font-Bold="True" ForeColor="#990000" Font-Size="Smaller" />
<RootNodeStyle Font-Bold="True" ForeColor="#FF8000" />
<NodeStyle Font-Bold="True" ForeColor="#284E98" />
<RootNodeStyle Font-Bold="True" ForeColor="#FF8000" />
<CurrentNodeStyle ForeColor="#333333" />
</asp:SiteMapPath>
</td>
<td align="right">
</td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</td>
</tr></pre>
AnswerRe: How to remove the space which is causing because of ajax tab container? Pin
Amar Chaudhary29-Nov-10 3:09
Amar Chaudhary29-Nov-10 3:09 
GeneralRe: How to remove the space which is causing because of ajax tab container? Pin
Shankaranarayana Thanthry29-Nov-10 17:43
Shankaranarayana Thanthry29-Nov-10 17:43 
GeneralRe: How to remove the space which is causing because of ajax tab container? Pin
Shankaranarayana Thanthry29-Nov-10 22:53
Shankaranarayana Thanthry29-Nov-10 22:53 
GeneralRe: How to remove the space which is causing because of ajax tab container? Pin
Amar Chaudhary30-Nov-10 14:50
Amar Chaudhary30-Nov-10 14:50 
QuestionList<> Shows Different Values entered in the textbox Pin
Vimalsoft(Pty) Ltd28-Nov-10 22:09
professionalVimalsoft(Pty) Ltd28-Nov-10 22:09 
AnswerRe: List Shows Different Values entered in the textbox Pin
Keith Barrow28-Nov-10 22:56
professionalKeith Barrow28-Nov-10 22:56 
GeneralRe: List Shows Different Values entered in the textbox Pin
Vimalsoft(Pty) Ltd28-Nov-10 23:37
professionalVimalsoft(Pty) Ltd28-Nov-10 23:37 
GeneralRe: List Shows Different Values entered in the textbox Pin
Keith Barrow29-Nov-10 1:06
professionalKeith Barrow29-Nov-10 1:06 
Question"exec sp_databases" shows only system databases. Pin
M_AhsanRiaz28-Nov-10 8:00
M_AhsanRiaz28-Nov-10 8:00 
AnswerRe: "exec sp_databases" shows only system databases. Pin
Not Active28-Nov-10 12:05
mentorNot Active28-Nov-10 12:05 
GeneralRe: "exec sp_databases" shows only system databases. Pin
M_AhsanRiaz28-Nov-10 22:59
M_AhsanRiaz28-Nov-10 22:59 
Questionfile upload woes... Pin
l a u r e n28-Nov-10 5:03
l a u r e n28-Nov-10 5:03 
AnswerRe: file upload woes... Pin
Amar Chaudhary28-Nov-10 6:52
Amar Chaudhary28-Nov-10 6:52 
AnswerRe: file upload woes... Pin
Jörgen Andersson28-Nov-10 9:41
professionalJörgen Andersson28-Nov-10 9:41 
AnswerRe: file upload woes... Pin
musefan29-Nov-10 5:00
musefan29-Nov-10 5:00 
GeneralRe: file upload woes... Pin
l a u r e n29-Nov-10 5:55
l a u r e n29-Nov-10 5:55 
GeneralRe: file upload woes... Pin
musefan29-Nov-10 6:49
musefan29-Nov-10 6:49 

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.