if u are working with master pages and u are using javascript menus on master to navigate child pages in content place holder.for that u need to save java script code in a particular folder and give path of that file in master page but as we know that path gets change when ever we go up and down in hierarchical of pages then that menu got disappear because of static path of .js file so we need to give dynamic path for java script...
Monday, December 22, 2008
Friday, December 19, 2008
Horizontal Menu and Sub Menu
To generate Horizontal Menu and sub menu < style type="text/css"> #topNav { width: 100%; background-color: #964240; vertical-align: bottom; padding: 0; margin: 0; z-index: 0; } #subNav { width: 100%; border-left: solid 1px #000; border-bottom: solid 1px #000; border-right: solid 1px #000; padding: 0; margin: 0; height:...
Labels:
ASP.NET
Thursday, December 18, 2008
Stop Refresh in Master / Child Page.
instead of using Master page use frame set to avoid refresh when click from menu to open a pageSteps:1. add a webpage in ur application2. add following code in design< head runat="server"> < title>Untitled Page< /title>< /head> < frameset framespacing ="0" rows="100,*,50" noresize="yes"> < frame name="menu" src="headerpage.aspx" noresize scrolling="no" /> < frame name="content"...
Labels:
ASP.NET,
Master Pages
Thursday, December 11, 2008
.NET Architect

Two types of architects are their1. The software architect (solution architect)2. The enterprise architect (binding business needs into the overall system/software architecture.A good architect in my opinion should have the following characteristics regardless of technology:1. The ability to take a complex problem and break it down into...
Labels:
ASP.NET
Tuesday, December 9, 2008
How to provide background image in TD from root path
use this code to provid background image url for TD which map to root path < td align="left" background=' < %= Server.MapPath("~/images/rolen.gif") %>' > u can also use this code also < td align="left" background=' < %= ResolveClientUrl("~/images/box.gif") %>' >well i prefer second "ResolveClientUrl" becoz ther Server.MapPath map path at server like c:\rajesh\rolen\mukesh.j...
Labels:
ASP.NET
Set Master Page at Runtime
to set master page for any page at run time. u need to write following codeprotected void Page_PreInit(object sender, EventArgs e){ this.MasterPageFile = "~/Business_Partner/businesspartner.Master";}but page should contain contentplaceholder of same name as it is in master which u are assigning i...
Labels:
ASP.NET,
Master Pages
Thursday, December 4, 2008
Disable all validations for specific control
asp:Button ID="OkButton" runat="server" CausesValidation="false" Text="OK" OnClick="onOk"set property named : CausesValidation to false if u want to disable validation for particular controlCausesValidation="fals...
Labels:
ASP.NET
Subscribe to:
Posts (Atom)