Click here to Skip to main content
15,902,635 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: RequiredField Validator Pin
eyeseetee29-Feb-08 1:19
eyeseetee29-Feb-08 1:19 
Generallogin problem with SetUpDatabase.cmd Pin
EvilInside29-Feb-08 0:57
EvilInside29-Feb-08 0:57 
QuestionAsp.net Templates Pin
Krazy Programmer29-Feb-08 0:56
Krazy Programmer29-Feb-08 0:56 
GeneralRe: Asp.net Templates Pin
eyeseetee29-Feb-08 1:17
eyeseetee29-Feb-08 1:17 
GeneralRe: Asp.net Templates Pin
Krazy Programmer29-Feb-08 1:47
Krazy Programmer29-Feb-08 1:47 
GeneralShowing Div on a Button [modified] Pin
.NET- India 29-Feb-08 0:26
.NET- India 29-Feb-08 0:26 
GeneralRe: Showing Div on a Button Pin
eyeseetee29-Feb-08 1:16
eyeseetee29-Feb-08 1:16 
GeneralRe: Showing Div on a Button Pin
.NET- India 29-Feb-08 1:20
.NET- India 29-Feb-08 1:20 
e is the code to display and disappear the div block
function showDiv(divID)
{
e=document.getElementById(divID);
if(e.style.display=="none")
{
e.style.display="block";
}
else
{
e.style.display="none";
}
}

========================================================





<div id="divChangePassword" style="border:solid 1px black; width:400px;top:125px;left:450px;position:absolute;display:none; background-color:#efefef;">
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">

<tr>
<td colspan="2" align="right" class="manojHeaderStrip1">
Update Your Password &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;
<a href="#" click="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">
User Name</td>
<td style="width: 100px">
<asp:TextBox ID="txtUserName" runat="server" CssClass="manojTextBox1" ReadOnly="True"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
Old Password</td>
<td style="width: 100px">
<asp:TextBox ID="txtOldPassword" runat="server" CssClass="manojTextBox1"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
New Password</td>
<td style="width: 100px">
<asp:TextBox ID="txtNewPassword" runat="server" CssClass="manojTextBox1"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
Retype New Password</td>
<td style="width: 100px">
<asp:TextBox ID="txtNewPassword1" runat="server" CssClass="manojTextBox1"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 50%" height="10">
</td>
<td style="width: 100px">
</td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
<input type="submit" id="cmdSubmit" value="Submit" runat="server" onserverclick="cmdSubmit_ServerClick" />
</td>

<td style="width: 100px" class="manojTDLeft">
<input type="reset" id="cmdReset" />
</td>
</tr>
<tr>
<td class="manojTDRight" height="10" style="width: 50%">
</td>
<td class="manojTDLeft" style="width: 100px">
</td>
</tr>
<tr>
<td class="manojTDRight" colspan="2" height="10">
<asp:Label ID="lblMsg1" runat="server"></asp:Label></td>
</tr>
</table>

</div>

As i click on the submit button then it disappear the div block
and also there is some code for updating the information is on the submit button
GeneralRe: Showing Div on a Button Pin
eyeseetee29-Feb-08 2:12
eyeseetee29-Feb-08 2:12 
GeneralRe: Showing Div on a Button Pin
.NET- India 29-Feb-08 2:20
.NET- India 29-Feb-08 2:20 
GeneralRe: Showing Div on a Button Pin
Not Active29-Feb-08 2:23
mentorNot Active29-Feb-08 2:23 
GeneralRe: Showing Div on a Button Pin
.NET- India 29-Feb-08 2:26
.NET- India 29-Feb-08 2:26 
GeneralRe: Showing Div on a Button Pin
Not Active29-Feb-08 2:31
mentorNot Active29-Feb-08 2:31 
Generalsubtraction using datetime Pin
eyeseetee28-Feb-08 23:47
eyeseetee28-Feb-08 23:47 
GeneralRe: subtraction using datetime Pin
Laddie28-Feb-08 23:52
Laddie28-Feb-08 23:52 
GeneralRe: subtraction using datetime Pin
eyeseetee29-Feb-08 0:04
eyeseetee29-Feb-08 0:04 
GeneralRe: subtraction using datetime Pin
Laddie29-Feb-08 0:06
Laddie29-Feb-08 0:06 
GeneralRe: subtraction using datetime Pin
eyeseetee29-Feb-08 0:13
eyeseetee29-Feb-08 0:13 
GeneralRe: subtraction using datetime Pin
eyeseetee29-Feb-08 0:35
eyeseetee29-Feb-08 0:35 
GeneralRe: subtraction using datetime Pin
eyeseetee29-Feb-08 0:46
eyeseetee29-Feb-08 0:46 
QuestionHow to implement currency conversion webservice in my project? Please give some example Pin
G Nathan28-Feb-08 23:35
G Nathan28-Feb-08 23:35 
AnswerRe: How to implement currency conversion webservice in my project? Please give some example Pin
eyeseetee28-Feb-08 23:50
eyeseetee28-Feb-08 23:50 
GeneralRe: How to implement currency conversion webservice in my project? Please give some example Pin
G Nathan28-Feb-08 23:52
G Nathan28-Feb-08 23:52 
GeneralRe: How to implement currency conversion webservice in my project? Please give some example Pin
Vasudevan Deepak Kumar29-Feb-08 19:22
Vasudevan Deepak Kumar29-Feb-08 19:22 
GeneralRe: How to implement currency conversion webservice in my project? Please give some example Pin
G Nathan29-Feb-08 19:38
G Nathan29-Feb-08 19:38 

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.