Firstly you should be more descriptive with your questions. So Im going to take a guess at what you mean. I'm assuming you mena how do you get from your View page to your edit page??
If that's correct then you need to register your Edit page in ModuleDefinitions, then in the View page you need to implement IActionable Like so
#Region "Optional Interfaces"
Public ReadOnly Property ModuleActions() As Entities.Modules.Actions.ModuleActionCollection Implements Entities.Modules.IActionable.ModuleActions
Get
Dim Actions As New Entities.Modules.Actions.ModuleActionCollection
Actions.Add(GetNextActionID, Localization.GetString(Entities.Modules.Actions.ModuleActionType.AddContent, LocalResourceFile), Entities.Modules.Actions.ModuleActionType.AddContent, "", "", EditUrl(), False, Security.SecurityAccessLevel.Edit, True, False)
Return Actions
End Get
End Property
#End Region
This will then go to your edit page.
If you have VS2005 you can use the templates in tehe starter kit to do all this for you. Check out the HTML module to see how to do this as well.
Cheers