473,385 Members | 1,732 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

Page flow

Is there anything available for ASP.Net that enables you to describe the
flow from one page to the next diagrammatically?

There is a product from Java land called Struts that allows you to do this.
Its something I miss in ASP.Net.

--
McGeeky
http://mcgeeky.blogspot.com

Nov 19 '05 #1
6 1546
Not to my knowledge, but it should not be too much work to make
something similar yourself:

1. create your own httphandler and bind it to an extention like *.go.
See IhttpHanlder interface.

2. do a server.execute of the page you want to display that based on
the information supplied for example customer.go?id=30&action=view
might be forwarded to "viewcustomer.aspx?customerid=30".
Or perhaps based on logic in a xml file?

I hope this proofs helpfull for you.
If you have any questions, let me know.

Marcel van Eijkel
( www.vaneijkel.com )

Nov 19 '05 #2
Not to my knowledge, but it should not be too much work to make
something similar yourself:

1. create your own httphandler and bind it to an extention like *.go.
See IhttpHanlder interface.

2. do a server.execute of the page you want to display that based on
the information supplied for example customer.go?id=30&action=view
might be forwarded to "viewcustomer.aspx?customerid=30".
Or perhaps based on logic in a xml file?

I hope this proofs helpfull for you.
If you have any questions, let me know.

Marcel van Eijkel
( www.vaneijkel.com )

Nov 19 '05 #3
Not to my knowledge, but it should not be too much work to make
something similar yourself:

1. create your own httphandler and bind it to an extention like *.go.
See IhttpHanlder interface.

2. do a server.execute of the page you want to display that based on
the information supplied for example customer.go?id=30&action=view
might be forwarded to "viewcustomer.aspx?customerid=30".
Or perhaps based on logic in a xml file?

I hope this proofs helpfull for you.
If you have any questions, let me know.

Marcel van Eijkel
( www.vaneijkel.com )

Nov 19 '05 #4
Hi Marcel, Thanks for that. I'll take a look in to it.

I was hoping that there might be a third party add-on for ASP.Net that would
achieve something similar. There were a couple of great graphical designer
tools for Struts that allowed you to draw the screen flow. I found that one
of the most useful things because it allowed you to easily understand page
flow without having to trawl through code.

--
McGeeky
http://mcgeeky.blogspot.com
"Marcel van eijkel ( www.vaneijkel.com )" <ma*************@gmail.com> wrote
in message news:11*********************@g47g2000cwa.googlegro ups.com...
Not to my knowledge, but it should not be too much work to make
something similar yourself:

1. create your own httphandler and bind it to an extention like *.go.
See IhttpHanlder interface.

2. do a server.execute of the page you want to display that based on
the information supplied for example customer.go?id=30&action=view
might be forwarded to "viewcustomer.aspx?customerid=30".
Or perhaps based on logic in a xml file?

I hope this proofs helpfull for you.
If you have any questions, let me know.

Marcel van Eijkel
( www.vaneijkel.com )

Nov 19 '05 #5
Dear McGreeky,

I have never seen such a graphical designer.
Do you have a link or a product name for you for such a tool for
struts?

Thanks.

Marcel van Eijkel
( www.vaneijkel.com )

McGeeky schreef:
Hi Marcel, Thanks for that. I'll take a look in to it.

I was hoping that there might be a third party add-on for ASP.Net that would
achieve something similar. There were a couple of great graphical designer
tools for Struts that allowed you to draw the screen flow. I found that one
of the most useful things because it allowed you to easily understand page
flow without having to trawl through code.

--
McGeeky
http://mcgeeky.blogspot.com
"Marcel van eijkel ( www.vaneijkel.com )" <ma*************@gmail.com> wrote
in message news:11*********************@g47g2000cwa.googlegro ups.com...
Not to my knowledge, but it should not be too much work to make
something similar yourself:

1. create your own httphandler and bind it to an extention like *.go.
See IhttpHanlder interface.

2. do a server.execute of the page you want to display that based on
the information supplied for example customer.go?id=30&action=view
might be forwarded to "viewcustomer.aspx?customerid=30".
Or perhaps based on logic in a xml file?

I hope this proofs helpfull for you.
If you have any questions, let me know.

Marcel van Eijkel
( www.vaneijkel.com )


Nov 19 '05 #6
There is one that comes with WSAD (IBM's Eclipse offering) - though it may
be called something else now. There are also a couple of standalone
offerings for struts though can't remember the names.

This is one that comes with MyEclipse

http://www.myeclipseide.com/ContentE...y-ceid-55.html

--
McGeeky
http://mcgeeky.blogspot.com
"Marcel van eijkel ( www.vaneijkel.com )" <ma*************@gmail.com> wrote
in message news:11**********************@g43g2000cwa.googlegr oups.com...
Dear McGreeky,

I have never seen such a graphical designer.
Do you have a link or a product name for you for such a tool for
struts?

Thanks.

Marcel van Eijkel
( www.vaneijkel.com )

McGeeky schreef:
Hi Marcel, Thanks for that. I'll take a look in to it.

I was hoping that there might be a third party add-on for ASP.Net that would achieve something similar. There were a couple of great graphical designer tools for Struts that allowed you to draw the screen flow. I found that one of the most useful things because it allowed you to easily understand page flow without having to trawl through code.

--
McGeeky
http://mcgeeky.blogspot.com
"Marcel van eijkel ( www.vaneijkel.com )" <ma*************@gmail.com> wrote in message news:11*********************@g47g2000cwa.googlegro ups.com...
Not to my knowledge, but it should not be too much work to make
something similar yourself:

1. create your own httphandler and bind it to an extention like *.go.
See IhttpHanlder interface.

2. do a server.execute of the page you want to display that based on
the information supplied for example customer.go?id=30&action=view
might be forwarded to "viewcustomer.aspx?customerid=30".
Or perhaps based on logic in a xml file?

I hope this proofs helpfull for you.
If you have any questions, let me know.

Marcel van Eijkel
( www.vaneijkel.com )

Nov 19 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: hilz | last post by:
Hi all: Is there a way to make the <fo:page-number> start from a value different than 1 ? (using fop to generate pdf) thanks hilz
0
by: Rary | last post by:
I am using XSL:FO to generate PDF report for my XML, generating it in tables, i want that tables should completely be at one place, if there is a page break , all the contents of the table should...
1
by: Joseph Ferris | last post by:
Hello, I am having an issue with page breaking that I hope someone will be able to help me with. Still a relative "newbie", and I thought this might be a good place to find some help. I have a...
0
by: Nathan | last post by:
Hi, I seem to having a peculiar problem with the display of odd and even pages in XSL-FO. Here is a small background of the problem. My xsl stylesheet mentions my fo:layout-master-set as ...
1
by: Michel | last post by:
Hi all, This is my first post, so I am very new at this. I am trying to use page-number-citation twice in my code, but the second time it just shows '0'. The output is in pdf format and I am...
3
by: Dave | last post by:
Hi, I want to create a base Webform where I want to put code to check if the logged on user is allowed to view the page. I want to put this code in once place and have all secured webforms...
2
by: johkar | last post by:
My right column content is created dynamically by an application so it will vary in height. When the main content of the page takes up more vertical space than the rigth column, I want the content...
0
by: krokador | last post by:
I've been looking over the net and there doesn't seem to be any other people around who's had that problem (or my googling skills are off this morning) so here I am asking this question: I have an...
0
by: cleary1981 | last post by:
Hi, Heres my xsl stylesheet. Its work in progress but it works. What I want to do however is to make one page in the middle (drawings) a landscape page. Can anyone explain how to do this as all...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.