Click here to Skip to main content
15,911,890 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Gridview blanks cell returns &nbsp !!! Pin
Parwej Ahamad16-Jun-08 5:27
professionalParwej Ahamad16-Jun-08 5:27 
GeneralRe: Gridview blanks cell returns &nbsp !!! Pin
kindman_nb16-Jun-08 5:41
kindman_nb16-Jun-08 5:41 
GeneralRe: Gridview blanks cell returns &nbsp !!! Pin
Parwej Ahamad16-Jun-08 5:51
professionalParwej Ahamad16-Jun-08 5:51 
QuestionProblems in Short code sms Pin
bijeshputhalath16-Jun-08 4:03
bijeshputhalath16-Jun-08 4:03 
AnswerRe: Problems in Short code sms Pin
Christian Graus16-Jun-08 4:04
protectorChristian Graus16-Jun-08 4:04 
QuestionJava Web service for .Net client Pin
indian14316-Jun-08 3:51
indian14316-Jun-08 3:51 
AnswerRe: Java Web service for .Net client Pin
Christian Graus16-Jun-08 3:53
protectorChristian Graus16-Jun-08 3:53 
GeneralRe: If anybody finds it pls. help me - Java Web service for .Net client Pin
indian14316-Jun-08 5:16
indian14316-Jun-08 5:16 
GeneralRe: If anybody finds it pls. help me - Java Web service for .Net client Pin
Christian Graus16-Jun-08 11:40
protectorChristian Graus16-Jun-08 11:40 
QuestionHow can i get system information using asp.net Pin
Satish - Developer16-Jun-08 3:18
Satish - Developer16-Jun-08 3:18 
AnswerRe: How can i get system information using asp.net Pin
Christian Graus16-Jun-08 3:20
protectorChristian Graus16-Jun-08 3:20 
GeneralRe: How can i get system information using asp.net Pin
Satish - Developer16-Jun-08 3:24
Satish - Developer16-Jun-08 3:24 
GeneralRe: How can i get system information using asp.net Pin
Christian Graus16-Jun-08 3:27
protectorChristian Graus16-Jun-08 3:27 
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 

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.