Click here to Skip to main content
15,929,504 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Questionupdate app.config file at runtime using my.settings Pin
steve_rm25-Sep-06 1:22
steve_rm25-Sep-06 1:22 
AnswerRe: update app.config file at runtime using my.settings Pin
M LN Rao25-Sep-06 1:42
M LN Rao25-Sep-06 1:42 
AnswerRe: update app.config file at runtime using my.settings Pin
parveen_banuk25-Sep-06 3:29
parveen_banuk25-Sep-06 3:29 
QuestionRe: update app.config file at runtime using my.settings Pin
steve_rm25-Sep-06 4:46
steve_rm25-Sep-06 4:46 
QuestionPlease help me to set dataGrid Scrolling Pin
Kokila.B25-Sep-06 0:52
Kokila.B25-Sep-06 0:52 
AnswerRe: Please help me to set dataGrid Scrolling Pin
Amit Kushwaha25-Sep-06 0:58
Amit Kushwaha25-Sep-06 0:58 
GeneralRe: Please help me to set dataGrid Scrolling Pin
Kokila.B25-Sep-06 1:32
Kokila.B25-Sep-06 1:32 
GeneralRe: Please help me to set dataGrid Scrolling Pin
Amit Kushwaha25-Sep-06 3:40
Amit Kushwaha25-Sep-06 3:40 
hi,

the basic concept behind menus in webbased project is to display and hide html elements. here is the simple code explaining this concept. u can format according to your need...

<HEAD>
<style type="text/css">

a.links:link { font-family : Arial; font-size : 12px; color : white; text-decoration : none; }
a.links:visited { font-family : Arial; font-size : 12px; color :white; text-decoration : none; }
a.links:hover { font-family : Arial; font-size : 12px; color : #FF9C03; text-decoration : none; }

td.menu{background:#4891C6}
table.menu {font-size:100%; position:absolute; visibility:hidden;cursor:hand }
</style>
<script type="text/javascript">
function showmenu(elmnt)
{
document.all(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.all(elmnt).style.visibility="hidden"
}
</script>
</HEAD>
<body topmargin="0" leftmargin="0" rightmargin="0">
<table width="100%">
<tr bgcolor="#4891c6">
<td style="cursor: hand" onclick="location.href='page1.aspx'" width="14%" onmouseover="showmenu('Mainmenu1')" onmouseout="hidemenu('Mainmenu1')">
<a class="links" HREF="page1.aspx">MainMenu1</a><br>
<table class="menu" id="Mainmenu1" width="100%">
<tr>
<td onclick="location.href='page1.aspx'" class="menu"><a class="links" HREF="page1.aspx">MenuItem</a></td>
</tr>
<tr>
<td onclick="location.href='page1.aspx'" class="menu"><a class="links" HREF="page1.aspx">MenuItem</a></td>
</tr>
<tr>
<td onclick="location.href='page1.aspx'" class="menu"><a class="links" HREF="page1.aspx">MenuItem</a></td>
</tr>
</table>
</td>
<td style="cursor: hand" onclick="location.href='page2.aspx'" width="14%" onmouseover="showmenu('Mainmenu2')" onmouseout="hidemenu('Mainmenu2')">
<a class="links" HREF="page2.aspx">MainMenu2</a><br>
<table class="menu" id="Mainmenu2" width="100%">
<tr>
<td onclick="location.href='page2.aspx'" class="menu"><a class="links" HREF="page2.aspx">MenuItem</a></td>
</tr>
<tr>
<td onclick="location.href='page2.aspx'" class="menu"><a class="links" HREF="page2.aspx">MenuItem</a></td>
</tr>
</table>
</td>
</tr>
</table>
</body>



Thanks & Regards...

Amit
Questioncan not run in debug mode - vs.net 1.0 Pin
Amit Kushwaha25-Sep-06 0:48
Amit Kushwaha25-Sep-06 0:48 
QuestionCrystal Reports Problem Pin
vikram92924-Sep-06 23:50
vikram92924-Sep-06 23:50 
Questionsession problem firebox Pin
S.Bhushan24-Sep-06 23:24
S.Bhushan24-Sep-06 23:24 
Questiondatagrid problem urgent!!! Pin
vijay258324-Sep-06 23:12
vijay258324-Sep-06 23:12 
AnswerRe: datagrid problem urgent!!! Pin
M LN Rao25-Sep-06 1:09
M LN Rao25-Sep-06 1:09 
AnswerRe: datagrid problem urgent!!! Pin
parveen_banuk25-Sep-06 2:57
parveen_banuk25-Sep-06 2:57 
QuestionReport Viewer Pin
bouchaara24-Sep-06 22:01
bouchaara24-Sep-06 22:01 
Questioncapture audio in asp.net 1.1 with vb.net 1.1 Pin
amaneet24-Sep-06 21:16
amaneet24-Sep-06 21:16 
QuestionAssemblies Pin
aaraaayen24-Sep-06 20:42
aaraaayen24-Sep-06 20:42 
AnswerRe: Assemblies Pin
sdaniel_cst24-Sep-06 23:00
sdaniel_cst24-Sep-06 23:00 
GeneralRe: Assemblies Pin
aaraaayen24-Sep-06 23:49
aaraaayen24-Sep-06 23:49 
GeneralRe: Assemblies Pin
M LN Rao25-Sep-06 1:20
M LN Rao25-Sep-06 1:20 
Questionimports Pin
amaneet24-Sep-06 20:23
amaneet24-Sep-06 20:23 
AnswerRe: imports Pin
Stephan Pilz24-Sep-06 20:37
Stephan Pilz24-Sep-06 20:37 
GeneralRe: imports Pin
amaneet24-Sep-06 21:08
amaneet24-Sep-06 21:08 
AnswerRe: imports Pin
sdaniel_cst24-Sep-06 23:29
sdaniel_cst24-Sep-06 23:29 
GeneralRe: imports Pin
Sathesh Sakthivel25-Sep-06 0:16
Sathesh Sakthivel25-Sep-06 0:16 

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.