Click here to Skip to main content
15,905,322 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Call a given URL after every specific time Interval Pin
Ravi Sant18-Apr-11 1:22
Ravi Sant18-Apr-11 1:22 
QuestionHow to get client machine ID? Pin
Prasanta_Prince17-Apr-11 5:44
Prasanta_Prince17-Apr-11 5:44 
AnswerRe: How to get client machine ID? Pin
Not Active17-Apr-11 9:25
mentorNot Active17-Apr-11 9:25 
GeneralRe: How to get client machine ID? [modified] Pin
Prasanta_Prince17-Apr-11 15:34
Prasanta_Prince17-Apr-11 15:34 
GeneralRe: How to get client machine ID? Pin
Not Active17-Apr-11 16:16
mentorNot Active17-Apr-11 16:16 
QuestionHow to call C# function via JavaScript? Pin
zouleisheng17-Apr-11 4:07
zouleisheng17-Apr-11 4:07 
AnswerRe: How to call C# function via JavaScript? Pin
Not Active17-Apr-11 4:33
mentorNot Active17-Apr-11 4:33 
AnswerRe: How to call C# function via JavaScript? Pin
Prasanta_Prince18-Apr-11 2:23
Prasanta_Prince18-Apr-11 2:23 
<asp:Button ID="btnHide" Runat="server" Text="Hide" />&nbsp;
<asp:Button ID="btnShow" Runat="server" Text="Show" />

<script language="javascript" type="text/javascript">
function hideButton() {

document.getElementById("divAbc").style.visibility = "hidden";
return false;

}
function showButton() {

document.getElementById("divAbc").style.visibility = "";
return false;

}
</script>

<div id="divAbc">
<table><tr><td style="width: 200px; height: 100px; background-color: red"></td></tr></table>

</div>


------------------------------------------------------------------------------------------------
.cs codebehind page_load
---------------------------
protected void Page_Load(object sender, EventArgs e)

{

btnHide.Attributes.Add("onclick", "return hideButton()");
btnShow.Attributes.Add("onclick", "return ShowButton()");

}
QuestionAuto-updating client web server Pin
Ramkumar_S16-Apr-11 9:31
Ramkumar_S16-Apr-11 9:31 
AnswerRe: Auto-updating client web server Pin
Ravi Sant18-Apr-11 1:18
Ravi Sant18-Apr-11 1:18 
QuestiontheForm._EVENTTARGET is undefined Pin
zouleisheng15-Apr-11 20:10
zouleisheng15-Apr-11 20:10 
QuestionComponentArt:Dialog datalist checkbox validation Pin
hurera111115-Apr-11 1:36
hurera111115-Apr-11 1:36 
AnswerRe: ComponentArt:Dialog datalist checkbox validation Pin
gavindon15-Apr-11 3:45
gavindon15-Apr-11 3:45 
QuestionAuto update in Client's machine Pin
Ramkumar_S14-Apr-11 21:19
Ramkumar_S14-Apr-11 21:19 
AnswerRe: Auto update in Client's machine Pin
Ravi Sant14-Apr-11 23:30
Ravi Sant14-Apr-11 23:30 
AnswerNeed some clarification Pin
David Mujica15-Apr-11 3:17
David Mujica15-Apr-11 3:17 
GeneralRe: Need some clarification Pin
Not Active15-Apr-11 6:51
mentorNot Active15-Apr-11 6:51 
Questioncheck box in datalist Pin
hurera111114-Apr-11 20:29
hurera111114-Apr-11 20:29 
AnswerRe: check box in datalist Pin
m@dhu15-Apr-11 2:49
m@dhu15-Apr-11 2:49 
GeneralRe: check box in datalist [modified] Pin
hurera111117-Apr-11 18:01
hurera111117-Apr-11 18:01 
GeneralRe: check box in datalist Pin
m@dhu20-Apr-11 23:43
m@dhu20-Apr-11 23:43 
GeneralRe: check box in datalist Pin
Prasanta_Prince21-Apr-11 2:44
Prasanta_Prince21-Apr-11 2:44 
QuestionHelp in ASP.NET web service Pin
akosidandan14-Apr-11 19:49
akosidandan14-Apr-11 19:49 
AnswerRe: Help in ASP.NET web service Pin
Pravin Patil, Mumbai15-Apr-11 0:40
Pravin Patil, Mumbai15-Apr-11 0:40 
GeneralRe: Help in ASP.NET web service Pin
akosidandan15-Apr-11 0:59
akosidandan15-Apr-11 0:59 

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.