If I understand what you are saying here you can use this URL
"~/EditModule.aspx?tabid=" & TabId & "&mid=" & ModuleId
Its just a modification to the Property of the base page
<Browsable(False), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _
Public ReadOnly Property EditURL(ByVal strKeyName As String, ByVal strKeyValue As String) As String
Get
Return "~/EditModule.aspx?tabid=" & TabId.ToString & "&mid=" & ModuleId.ToString & "&" & strKeyName & "=" & strKeyValue
End Get
End Property
Or you could just pass 2 empty stings to EditURL("","")
Hope that helps.
Philip Beadle (MVP, MCAD,
DotNetNuke Core Team)