forked from ventrian/News-Articles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathucSubmitNewsComplete.ascx.vb
executable file
·40 lines (23 loc) · 1.19 KB
/
ucSubmitNewsComplete.ascx.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'
' News Articles for DotNetNuke - http://www.dotnetnuke.com
' Copyright (c) 2002-2007
' by Ventrian ( [email protected] ) ( http://www.ventrian.com )
'
Imports DotNetNuke.Common
Imports Ventrian.NewsArticles.Base
Namespace Ventrian.NewsArticles
Partial Public Class ucSubmitNewsComplete
Inherits NewsArticleModuleBase
#Region " Event Handlers "
Private Sub cmdSubmitArticle_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdSubmitArticle.Click
Response.Redirect(Common.GetModuleLink(TabId, ModuleId, "SubmitNews", ArticleSettings), True)
End Sub
Private Sub cmdViewMyArticles_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdViewMyArticles.Click
Response.Redirect(Common.GetModuleLink(TabId, ModuleId, "MyArticles", ArticleSettings), True)
End Sub
Private Sub cmdCurrentArticles_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdCurrentArticles.Click
Response.Redirect(Common.GetModuleLink(TabId, ModuleId, "", ArticleSettings), True)
End Sub
#End Region
End Class
End Namespace