Click here to Skip to main content
15,917,062 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Export to word Pin
sidbaruah19-Mar-08 21:59
sidbaruah19-Mar-08 21:59 
GeneralRe: Export to word Pin
samerh27-Mar-08 22:37
samerh27-Mar-08 22:37 
GeneralDiv in Master Page's Content Page [modified] Pin
.NET- India 19-Mar-08 1:33
.NET- India 19-Mar-08 1:33 
GeneralRe: Div in Master Page's Content Page Pin
eyeseetee19-Mar-08 1:54
eyeseetee19-Mar-08 1:54 
GeneralRe: Div in Master Page's Content Page Pin
eyeseetee19-Mar-08 2:22
eyeseetee19-Mar-08 2:22 
GeneralRe: Div in Master Page's Content Page Pin
.NET- India 19-Mar-08 2:26
.NET- India 19-Mar-08 2:26 
GeneralRe: Div in Master Page's Content Page Pin
eyeseetee19-Mar-08 3:07
eyeseetee19-Mar-08 3:07 
GeneralRe: Div in Master Page's Content Page Pin
.NET- India 19-Mar-08 3:17
.NET- India 19-Mar-08 3:17 
<script language="javascript">
function showDiv()
{
e=document.getElementById("<%=divCityInformation.ClientID%>");
//e=document.getElementById('divCityInformation');

if(e.style.display=="none")
{
e.style.display="block";
}
else
{
e.style.display="none";
}
}
</script>

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


<a href="#" onclick="showDiv();" class="manojLink" title="Click Here To Enter New City">Click Here To Enter New City</a>


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


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

<tr>
<td colspan="2" align="right" class="manojHeaderStrip1">
New City Information&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp; &nbsp; &nbsp;
<a href="#" onclick="showDiv();" title="Close" style="text-align:right;color:Red;color:White;font-size:8.5pt;">[Close]</a>
</td>
</tr>
<tr>
<td colspan="2" height="20">
</td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
Enter City Name</td>
<td style="width: 100px">
<asp:TextBox ID="txtCityName" runat="server" CssClass="manojTextBox1"></asp:TextBox></td>
</tr>
<tr>
<td colspan="2" style="height:7px;">
</td>
</tr>
<tr>
<td style="width: 50%" class="manojTDRight">
Enter Column No.</td>
<td style="width: 100px">
<asp:DropDownList ID="ddlColumn" runat="server" Width="150">
<asp:ListItem Selected="True">1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
</asp:DropDownList></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="Submit1" value="Submit" runat="server" onserverclick="Submit1_ServerClick" />
</td>
<td style="width: 100px" class="manojTDLeft">
<input type="reset" id="Reset1" />
</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="Label1" runat="server"></asp:Label></td>
</tr>
</table>


</div>
======================================

protected void Submit1_ServerClick(object sender, EventArgs e)
{

HtmlControl frame1 = (HtmlControl)this.FindControl("divCityInformation");
frame1.Visible = true;
}
GeneralRe: Div in Master Page's Content Page Pin
eyeseetee19-Mar-08 3:33
eyeseetee19-Mar-08 3:33 
GeneralYes, No, Cancel, 3 buttons in javascript message box Pin
Elena200619-Mar-08 0:34
Elena200619-Mar-08 0:34 
GeneralRe: Yes, No, Cancel, 3 buttons in javascript message box Pin
eyeseetee19-Mar-08 0:45
eyeseetee19-Mar-08 0:45 
GeneralRe: Yes, No, Cancel, 3 buttons in javascript message box Pin
Laddie19-Mar-08 0:46
Laddie19-Mar-08 0:46 
Questionhow could this problem is solved. Pin
lakshmichawala19-Mar-08 0:04
lakshmichawala19-Mar-08 0:04 
AnswerRe: how could this problem is solved. Pin
Christian Graus19-Mar-08 0:11
protectorChristian Graus19-Mar-08 0:11 
GeneralRe: how could this problem is solved. Pin
lakshmichawala19-Mar-08 0:23
lakshmichawala19-Mar-08 0:23 
GeneralRe: how could this problem is solved. Pin
Christian Graus19-Mar-08 0:51
protectorChristian Graus19-Mar-08 0:51 
GeneralRe: how could this problem is solved. Pin
eyeseetee19-Mar-08 1:32
eyeseetee19-Mar-08 1:32 
Questionhow to count number of lines in textarea Pin
$unil Dhiman18-Mar-08 23:44
$unil Dhiman18-Mar-08 23:44 
AnswerRe: how to count number of lines in textarea Pin
Laddie19-Mar-08 0:01
Laddie19-Mar-08 0:01 
GeneralRe: how to count number of lines in textarea Pin
$unil Dhiman19-Mar-08 14:17
$unil Dhiman19-Mar-08 14:17 
AnswerRe: how to count number of lines in textarea Pin
sumit703419-Mar-08 0:17
sumit703419-Mar-08 0:17 
GeneralRe: how to count number of lines in textarea Pin
$unil Dhiman19-Mar-08 14:17
$unil Dhiman19-Mar-08 14:17 
QuestionCentre Align Contents of a Webpage in ASP.NET? Pin
niting8518-Mar-08 23:44
niting8518-Mar-08 23:44 
AnswerRe: Centre Align Contents of a Webpage in ASP.NET? Pin
bigphish19-Mar-08 0:04
bigphish19-Mar-08 0:04 
GeneralRe: Centre Align Contents of a Webpage in ASP.NET? Pin
eyeseetee19-Mar-08 0:16
eyeseetee19-Mar-08 0:16 

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.