Site
Web
Home
Blog
Sitemap
Partners
Contact Us
Discussion Groups
Calendar
Chat
You are here:
Home
>
Blog
Register
|
Login
Bookmark
Blog Calendar
Archive
<
August 2009
>
Sun
Mon
Tue
Wed
Thu
Fri
Sat
26
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
Monthly
September, 2010 (1)
August, 2010 (4)
July, 2010 (3)
June, 2010 (3)
May, 2010 (5)
April, 2010 (2)
March, 2010 (4)
February, 2010 (2)
January, 2010 (8)
December, 2009 (3)
November, 2009 (4)
October, 2009 (5)
September, 2009 (5)
August, 2009 (3)
July, 2009 (5)
June, 2009 (4)
May, 2009 (5)
April, 2009 (4)
March, 2009 (6)
February, 2009 (4)
January, 2009 (5)
December, 2008 (2)
Blog Search
Keywords
Phrase
Captured Technology - Blog
Creating Tabbed Content With the ASP.Net Menu Control
By Steve Patterson on
8/21/2009 4:16 PM
Creating Tabbed Content With the ASP.Net Menu Control A recent design required tabbed content on the section page of a website. After doing some research I came upon a solution for tabbed content using the ASP.Net Menu Control. By placing a Menu Control on the page along with a Multiview Control, it is possible to show the different items of the Multiview Control when menu items are selected.
The page markup looks like this:
table border="0" width="100%"> tr> td width="151px"> asp:Menu ID="mnuTabbedContent" runat="server" Orientation="Vertical" OnMenuItemClick="mnuTabbedContent_MenuItemClick" > Items> asp:MenuItem ImageUrl="~/Images/greentab.png" ToolTip="Item 1" Text=" " Value="0">asp:MenuItem> asp:MenuItem ImageUrl="~/Images/whitetab.png" ToolTip="Item 2" Text=" " Value="1">asp:MenuItem> asp:MenuItem...
PermaLink
Read More »
Comments (5)
CapturedTech - Technology
Creating Rounded Corners and Building the Table in ASP.Net Code
By Steve Patterson on
8/14/2009 2:32 PM
Creating Rounded Corners and Building the Table in ASP.Net Code I have worked with a number of rounded corner solutions over the past 6 months since the interns that do design at work love rounded corners. I think the best method we have developed is to slice an image into 8 small images and then build a table surrounding content that shows the corners desired. I like to use Paint.Net to create the 8 images of 15px by 15px each. As you can imagine the images are top_left, top, top_right, left, right, etc.
The table code is like so:
table cellpadding="0" cellspacing="0"> tr id="header"> td width="15px" height="15px">img alt="gray_topleft" src="gray_topleft.png" />td> td height="15px" style="background-image:url('gray_top.png'); background-repeat:repeat-x;">td> td width="15px" height="15px">img alt="gray_topright" src="gray_topright.png" />td> tr> tr id="body"> td width="15px" style="background-image:url('gray_left.png');...
PermaLink
Read More »
Comments (3)
CapturedTech - Technology
ASP.Net Form Issues Solved
By Steve Patterson on
8/4/2009 3:25 PM
ASP.Net Form Issues Solved I was working on a ASP.Net form this week that created several issues that I need to research to solve. Radio Buttons on the page were making all other controls undetectable within the code. Validation text was wrapping from next to the validated control to underneath the control. And the Reset button on the page was causing validation to occur which is not desirable.
Radio Button List I was able to solve the issue of radio buttons on the page affecting all other controls by wrapping the buttons into a radio button list.
"rdSpecificInvoiceInfo" runat="server"> "rdSpecificInvoiceInfoY" runat="server" value="Yes" /> "rdSpecificInvoiceInfoN" runat="server" value="No" /> .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; background-color: #ffffff; /*white-space: pre;*/ } .csharpcode pre { margin: 0em; } .csharpcode .rem { color: #008000; } .csharpcode .kwrd { color:...
PermaLink
Read More »
Comments (4)
CapturedTech - Technology
Blog Directory
View All Recent Entries
CapturedTech - Technology (87)
Blog Admin
You must be logged in and have permission to create or edit a blog.
Translate
Sponsors
Home
|
Discussion Groups
|
Calendar
|
Chat
Privacy Statement
|
Terms Of Use
Copyright 2010 by Captured Technology | .Net Development