Click here to Skip to main content
15,908,673 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionHow to take Html pages designed using photoshop and flash in asp.net web application Pin
anujose10-Apr-07 19:43
anujose10-Apr-07 19:43 
QuestionOutlook in aspx pages Pin
samerh10-Apr-07 18:56
samerh10-Apr-07 18:56 
AnswerRe: Outlook in aspx pages Pin
varshavmane10-Apr-07 21:06
varshavmane10-Apr-07 21:06 
AnswerRe: Outlook in aspx pages Pin
RichardGrimmer11-Apr-07 5:40
RichardGrimmer11-Apr-07 5:40 
QuestionPassing values from href tag in html......... Pin
Member 387988110-Apr-07 18:19
Member 387988110-Apr-07 18:19 
AnswerRe: Passing values from href tag in html......... Pin
enjoycrack10-Apr-07 18:59
enjoycrack10-Apr-07 18:59 
AnswerRe: Passing values from href tag in html......... Pin
gauthee10-Apr-07 19:05
gauthee10-Apr-07 19:05 
AnswerRe: Passing values from href tag in html......... Pin
Abolfazl Sheikhloo10-Apr-07 19:16
Abolfazl Sheikhloo10-Apr-07 19:16 
<a href="#" onclick="javascript:popWin = window.open('page2.htm')">Open Window</a>
<a href="#" onclick="javascript:ShowDiv('First')">link1</a>
<a href="#" onclick="javascript:ShowDiv('Second')">link2</a>
<a href="#" onclick="javascript:if(popWin != null)if(!popWin.closed)popWin.close();">Close PopUp</a>
<script>
var popWin;
function ShowDiv(objId)
{
if(popWin == null)
{
alert('Please Open Your PopUp Firstly');
return;
}
popWinObject = popWin.document.getElementById(objId);
if(popWinObject == null)
{
alert('Object Dos Not Exist In PopUp.');
return;
}
if(popWinObject.style.display == "none")
popWinObject.style.display = "";
else
popWinObject.style.display = "none";

return;
}
</script>
and in page2.htm write:
<div id="First"> First Panel </div>
<div id="Second"> Second Panel </div>

We Can Do Anything, If We Want It
GeneralRe: Passing values from href tag in html......... Pin
Member 387988110-Apr-07 20:00
Member 387988110-Apr-07 20:00 
GeneralRe: Passing values from href tag in html......... Pin
Abolfazl Sheikhloo10-Apr-07 20:07
Abolfazl Sheikhloo10-Apr-07 20:07 
GeneralRe: Passing values from href tag in html......... Pin
Abolfazl Sheikhloo10-Apr-07 20:08
Abolfazl Sheikhloo10-Apr-07 20:08 
GeneralRe: Passing values from href tag in html......... Pin
Member 387988110-Apr-07 22:02
Member 387988110-Apr-07 22:02 
QuestionFile Download Pin
ragavan10-Apr-07 18:18
ragavan10-Apr-07 18:18 
AnswerRe: File Download Pin
enjoycrack10-Apr-07 19:00
enjoycrack10-Apr-07 19:00 
GeneralRe: File Download Pin
ragavan10-Apr-07 19:26
ragavan10-Apr-07 19:26 
GeneralRe: File Download Pin
enjoycrack10-Apr-07 19:29
enjoycrack10-Apr-07 19:29 
GeneralRe: File Download Pin
ragavan10-Apr-07 22:09
ragavan10-Apr-07 22:09 
GeneralRe: File Download Pin
enjoycrack10-Apr-07 22:21
enjoycrack10-Apr-07 22:21 
QuestionAJAX Calender Control Doubt Pin
Nagarajan R.J10-Apr-07 17:08
Nagarajan R.J10-Apr-07 17:08 
AnswerRe: AJAX Calender Control Doubt Pin
Sathesh Sakthivel10-Apr-07 17:54
Sathesh Sakthivel10-Apr-07 17:54 
QuestionData Access Layer on Web Service Pin
Tuwing.Sabado10-Apr-07 16:38
Tuwing.Sabado10-Apr-07 16:38 
Questiondetermined max of sessions in the same time Pin
wbaidousee10-Apr-07 12:12
wbaidousee10-Apr-07 12:12 
AnswerRe: determined max of sessions in the same time Pin
gauthee10-Apr-07 19:36
gauthee10-Apr-07 19:36 
Questionmaster pages Pin
hahii10-Apr-07 11:07
hahii10-Apr-07 11:07 
AnswerRe: master pages Pin
Not Active10-Apr-07 16:52
mentorNot Active10-Apr-07 16:52 

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.