Click here to Skip to main content
15,888,257 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: How can i get system information using asp.net Pin
Satish - Developer16-Jun-08 3:30
Satish - Developer16-Jun-08 3:30 
QuestionBind Nested objects to Dropdown Pin
Member 183766116-Jun-08 3:02
Member 183766116-Jun-08 3:02 
Questioncontrol speed of expanding panel Pin
S.Aijaz16-Jun-08 2:55
S.Aijaz16-Jun-08 2:55 
AnswerRe: control speed of expanding panel Pin
Imran Khan Pathan16-Jun-08 2:59
Imran Khan Pathan16-Jun-08 2:59 
GeneralRe: control speed of expanding panel Pin
S.Aijaz16-Jun-08 17:49
S.Aijaz16-Jun-08 17:49 
QuestionDiv in Content Page Pin
.NET- India 16-Jun-08 2:37
.NET- India 16-Jun-08 2:37 
AnswerRe: Div in Content Page Pin
Christian Graus16-Jun-08 2:41
protectorChristian Graus16-Jun-08 2:41 
GeneralRe: Div in Content Page Pin
.NET- India 16-Jun-08 2:52
.NET- India 16-Jun-08 2:52 
<script language="javascript">
function showDiv(divID)
{
e=document.getElementById(divID);
if(e.style.display=="none")
{
e.style.display="block";
}
else
{
e.style.display="none";
}
}
</script>


<div id="divChangePassword" style="border:solid 1px black; width:400px;top:125px;left:450px;position:absolute;display:block; background-color:#efefef;" runat="server">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tr>
<td colspan="2" align="right" class="manojHeaderStrip1">
Add Main Topic &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
<a href="#" onclick="showDiv('divChangePassword');" title="Close" style="text-align:right;color:Red;color:White;font-size:8.5pt;">[Close]</a>
</td>
</tr>
<tr>
<td colspan="2" height="10">
</td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
Enter Main Topic Name</td>
<td style="width: 100px">
<asp:TextBox ID="txtName" runat="server" CssClass="manojTextBox1" ReadOnly="True"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 50%; height: 19px;">
</td>
<td style="width: 100px; height: 19px;">
</td>
</tr>
<tr>
<td style="width: 50%; height: 24px;" class="manojTDRight">
<input type="submit" id="cmdSubmit1" value="Submit" runat="server"/>
</td>
<td style="width: 100px; height: 24px;" class="manojTDLeft">
<asp:Button ID="cmdReset1" Text="Reset" runat="server" OnClick="cmdReset1_Click"/>
</td>
</tr>
<tr>
<td class="manojTDRight" style="width: 50%">
</td>
<td class="manojTDLeft">
</td>
</tr>
<tr>
<td class="manojTDRight" colspan="2">
<asp:Label ID="lblMsg1" runat="server"></asp:Label></td>
</tr>
</table>
</div>
<a href="#" onclick="showDiv('divChangePassword');" class="manojLink" tabindex="2" title="Click Here To Change Your Password">Change Your Password</a>

As you click on this link it'll hide or show the div. But it's not working in content Page of Master Page
GeneralRe: Div in Content Page Pin
Imran Khan Pathan16-Jun-08 2:56
Imran Khan Pathan16-Jun-08 2:56 
GeneralRe: Div in Content Page Pin
Christian Graus16-Jun-08 2:59
protectorChristian Graus16-Jun-08 2:59 
GeneralRe: Div in Content Page Pin
Imran Khan Pathan16-Jun-08 3:02
Imran Khan Pathan16-Jun-08 3:02 
GeneralRe: Div in Content Page Pin
Christian Graus16-Jun-08 3:05
protectorChristian Graus16-Jun-08 3:05 
GeneralRe: Div in Content Page Pin
.NET- India 16-Jun-08 3:10
.NET- India 16-Jun-08 3:10 
GeneralRe: Div in Content Page Pin
Imran Khan Pathan16-Jun-08 3:15
Imran Khan Pathan16-Jun-08 3:15 
GeneralRe: Div in Content Page Pin
.NET- India 16-Jun-08 19:34
.NET- India 16-Jun-08 19:34 
GeneralRe: Div in Content Page Pin
Christian Graus16-Jun-08 3:19
protectorChristian Graus16-Jun-08 3:19 
GeneralRe: Div in Content Page Pin
Christian Graus16-Jun-08 2:58
protectorChristian Graus16-Jun-08 2:58 
GeneralRe: Div in Content Page Pin
.NET- India 16-Jun-08 3:05
.NET- India 16-Jun-08 3:05 
QuestionSqlMembership provider and SQL injection attacks Pin
kensai16-Jun-08 2:10
kensai16-Jun-08 2:10 
AnswerRe: SqlMembership provider and SQL injection attacks Pin
Christian Graus16-Jun-08 2:11
protectorChristian Graus16-Jun-08 2:11 
Question[Message Deleted] Pin
venkat86_ece16-Jun-08 1:46
venkat86_ece16-Jun-08 1:46 
AnswerRe: Connect SQL through HTML Pin
Christian Graus16-Jun-08 2:12
protectorChristian Graus16-Jun-08 2:12 
AnswerRe: Connect SQL through HTML Pin
Ravi Sant3-May-11 0:51
Ravi Sant3-May-11 0:51 
Questionembedded javascript Pin
248912816-Jun-08 1:45
248912816-Jun-08 1:45 
AnswerRe: embedded javascript Pin
varshavmane16-Jun-08 1:56
varshavmane16-Jun-08 1:56 

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.