Click here to Skip to main content
15,907,396 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: in browsers (such as IE) how can emulate a button click event ? Pin
RichardGrimmer11-Apr-07 5:39
RichardGrimmer11-Apr-07 5:39 
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 
Whenever you click the links in the first html page pass a quey string too!
Like if link1 in page1 is clicked then your target url should be appended with something like url?page1.
The same with link2, when clicked the url should be appended with link2.

Now you can write a function using javascript in the form load event for the html2 page to check whether link1 is clicked or link2 is clicked!
then accordingly you enable/disable links in your html2 page.

the javascript function to capture the passed query string is as follows:
function getQueryVariable(variable)
{
var query = window.location.search.substring(1);
var vars = query.split("&");
for (var i=0;i<vars.length;i++)
{
="" var="" pair="vars[i].split("=");
" if="" (pair[0]="=" variable)="" return="" pair[1];
="" }
="" }=""

that="" is="" my="" thought="" process,="" hope="" it="" works!!=""

<div="" class="ForumSig">Gautham
AnswerRe: Passing values from href tag in html......... Pin
Abolfazl Sheikhloo10-Apr-07 19:16
Abolfazl Sheikhloo10-Apr-07 19:16 
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 

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.