Click here to Skip to main content
15,897,360 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionCrystal Reports Pin
rajitksingh8-Apr-08 3:27
rajitksingh8-Apr-08 3:27 
GeneralHide or Show Div Pin
.NET- India 8-Apr-08 3:25
.NET- India 8-Apr-08 3:25 
GeneralRe: Hide or Show Div Pin
led mike8-Apr-08 4:38
led mike8-Apr-08 4:38 
GeneralRe: Hide or Show Div Pin
raushan_98-Apr-08 22:00
raushan_98-Apr-08 22:00 
GeneralRe: Hide or Show Div Pin
led mike9-Apr-08 5:56
led mike9-Apr-08 5:56 
GeneralRe: Hide or Show Div Pin
Sandilian8-Apr-08 21:12
Sandilian8-Apr-08 21:12 
GeneralRe: Hide or Show Div Pin
raushan_98-Apr-08 22:02
raushan_98-Apr-08 22:02 
GeneralRe: Hide or Show Div [modified] Pin
Sandilian9-Apr-08 0:02
Sandilian9-Apr-08 0:02 
Hai Here is the code try to use it.

<script language="jscript" type="text/javascript">

function ShowDiv1(div1,div2)
{
document.getElementById(div2).style.visibility="hidden";
document.getElementById(div1).style.visibility="visible";
}

function ShowDiv2(div1,div2)
{
document.getElementById(div2).style.visibility="visible";
document.getElementById(div1).style.visibility="hidden";
}
</script>

<div id="div1">
<asp:TextBox ID="txt1" Text="Hai" runat="server" ></asp:TextBox>
</div>
<div id="div2">
<asp:TextBox ID="TextBox4" Text="Good Noon" runat="server" ></asp:TextBox>
<br />
<br />
</div>
<asp:LinkButton ID="LinkButton1" OnClientClick="ShowDiv1('div1','div2'); return false;" runat="server" >LinkButton</asp:LinkButton>
<asp:LinkButton ID="LinkButton2" OnClientClick="ShowDiv2('div1','div2'); return false;" runat="server" >LinkButton</asp:LinkButton>

modified on Wednesday, April 9, 2008 6:21 AM

GeneralExecuting .exe file on remote server from asp.net web app Pin
labordayfun8-Apr-08 2:39
labordayfun8-Apr-08 2:39 
GeneralRe: Executing .exe file on remote server from asp.net web app Pin
N a v a n e e t h8-Apr-08 3:52
N a v a n e e t h8-Apr-08 3:52 
AnswerRe: Executing .exe file on remote server from asp.net web app Pin
Jesse Squire8-Apr-08 5:33
Jesse Squire8-Apr-08 5:33 
QuestionDatagrid inside dropdownlist control Pin
senthilsstil8-Apr-08 2:22
senthilsstil8-Apr-08 2:22 
GeneralRe: Datagrid inside dropdownlist control Pin
eyeseetee8-Apr-08 2:40
eyeseetee8-Apr-08 2:40 
GeneralRe: Datagrid inside dropdownlist control Pin
N a v a n e e t h8-Apr-08 3:49
N a v a n e e t h8-Apr-08 3:49 
GeneralRe: Datagrid inside dropdownlist control Pin
Sandilian8-Apr-08 19:55
Sandilian8-Apr-08 19:55 
Generalproblem with foreach loop Pin
eyeseetee8-Apr-08 2:20
eyeseetee8-Apr-08 2:20 
GeneralRe: problem with foreach loop Pin
senthilsstil8-Apr-08 2:53
senthilsstil8-Apr-08 2:53 
GeneralRe: problem with foreach loop Pin
eyeseetee8-Apr-08 3:05
eyeseetee8-Apr-08 3:05 
GeneralRe: problem with foreach loop Pin
N a v a n e e t h8-Apr-08 3:38
N a v a n e e t h8-Apr-08 3:38 
GeneralRe: problem with foreach loop Pin
eyeseetee8-Apr-08 3:57
eyeseetee8-Apr-08 3:57 
GeneralRe: problem with foreach loop Pin
eyeseetee8-Apr-08 4:13
eyeseetee8-Apr-08 4:13 
GeneralRe: problem with foreach loop Pin
N a v a n e e t h8-Apr-08 15:49
N a v a n e e t h8-Apr-08 15:49 
GeneralTo get Databind value assign to check box Pin
sjs4u8-Apr-08 2:08
sjs4u8-Apr-08 2:08 
GeneralRe: To get Databind value assign to check box Pin
Christian Graus8-Apr-08 2:20
protectorChristian Graus8-Apr-08 2:20 
GeneralAlignment in Grid View Pin
kimo code8-Apr-08 1:51
kimo code8-Apr-08 1:51 

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.