Click here to Skip to main content
15,913,091 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: On click event Pin
Elina Blank11-Apr-07 13:16
sitebuilderElina Blank11-Apr-07 13:16 
GeneralRe: On click event Pin
hadad11-Apr-07 13:29
hadad11-Apr-07 13:29 
GeneralRe: On click event Pin
Elina Blank11-Apr-07 13:34
sitebuilderElina Blank11-Apr-07 13:34 
GeneralRe: On click event Pin
hadad12-Apr-07 1:36
hadad12-Apr-07 1:36 
Questionrunat=server or runat="server"? Pin
Yeppr11-Apr-07 11:04
Yeppr11-Apr-07 11:04 
AnswerRe: runat=server or runat="server"? Pin
J$11-Apr-07 12:19
J$11-Apr-07 12:19 
QuestionSending e-mails with unicode encoding Pin
Ahmed Galal11-Apr-07 10:13
Ahmed Galal11-Apr-07 10:13 
Questionexpression not a method Pin
Hasan Ali11-Apr-07 8:28
Hasan Ali11-Apr-07 8:28 
Protected Sub btn_sub2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btn_sub2.Click


'view type selection

view_type = ddl_cesum.SelectedItem.Value
title_view = ddl_cesum.SelectedItem.Text
Session("view_type") = view_type


'estimate type selection

If rb_int.Checked Then
est_typ = "INITEST"
title_est = "Initial LRE"
ElseIf rb_scp.Checked Then
est_typ = "SCOPEEST"
title_est = "Scope LRE"
ElseIf rb_ph1.Checked Then
est_typ = "PHSE1EST"
title_est = "Phase I LRE"
ElseIf rb_ph2.Checked Then
est_typ = "PHSE2EST"
title_est = "Phase II LRE"
ElseIf rb_ph3.Checked Then
est_typ = "PHSE3EST"
title_est = "Phase III LRE"
ElseIf rb_ph4.Checked Then
est_typ = "PHSE4EST"
title_est = "Phase IV LRE"
ElseIf rb_ofct.Checked Then
est_typ = "OFCLEST"
title_est = "Official Cost"
End If
Session("est_typ") = est_typ



'period
'month and year selection

If rb_cemon.Checked Then

objBaseClass = New BusinessObjectBase
month_year = objBaseClass.get_month_year(ddl_ceyrs1.SelectedItem.Value, ddl_cemon.SelectedItem.Value)
from_date = month_year(0)
to_date = month_year(1)
title_mon_year = month_year(2)

'Quater and year selection

ElseIf rb_ceqtr.Checked Then

objBaseClass = New BusinessObjectBase
quater_year = objBaseClass.get_quater_year(ddl_ceyrs2.SelectedItem.Value, ddl_ceqtr.SelectedItem.Value)
from_date = quater_year(0)
to_date = quater_year(1)
title_quater_year = quater_year(2)

' Only year selection

ElseIf rb_ceyrs.Checked Then

objBaseClass = New BusinessObjectBase
year = objBaseClass.get_year(ddl_ceyrs3.SelectedIndex)
from_date = Year(0)
to_date = Year(1)
title_year = year(2)

End If

Session("from_date") = from_date
Session("to_date") = to_date
page_title = title_view & " " & title_est & " Estimate Totals for " & " " & title_mon_year & title_quater_year & title_year
Session("page_title") = page_title
Response.Redirect("Ce_sumlist.aspx")

Response.Redirect("Ce_sumlist.aspx?v_type=" &
view_type & "&e_typ=" &
est_typ )


End Sub
GeneralRe: expression not a method Pin
Guffa11-Apr-07 8:53
Guffa11-Apr-07 8:53 
GeneralRe: expression not a method Pin
Jonathan [Darka]17-Apr-07 21:57
professionalJonathan [Darka]17-Apr-07 21:57 
QuestionASP.NET Machine Account under VISTA? Pin
Morantex11-Apr-07 8:15
Morantex11-Apr-07 8:15 
Questioncombining a Gif and a JPG into a file ... Pin
devboycpp11-Apr-07 6:37
devboycpp11-Apr-07 6:37 
AnswerRe: combining a Gif and a JPG into a file ... Pin
Guffa11-Apr-07 6:58
Guffa11-Apr-07 6:58 
GeneralRe: combining a Gif and a JPG into a file ... Pin
devboycpp11-Apr-07 7:12
devboycpp11-Apr-07 7:12 
GeneralRe: combining a Gif and a JPG into a file ... Pin
Guffa11-Apr-07 8:55
Guffa11-Apr-07 8:55 
GeneralRe: combining a Gif and a JPG into a file ... Pin
devboycpp11-Apr-07 23:45
devboycpp11-Apr-07 23:45 
AnswerRe: combining a Gif and a JPG into a file ... Pin
Guffa12-Apr-07 7:32
Guffa12-Apr-07 7:32 
AnswerRe: combining a Gif and a JPG into a file ... Pin
Dave Kreskowiak11-Apr-07 7:05
mveDave Kreskowiak11-Apr-07 7:05 
Questionrestrict users to browse only some specified type of files Pin
indian14311-Apr-07 5:49
indian14311-Apr-07 5:49 
QuestionActive Directory Authentication Pin
ziwez011-Apr-07 5:42
ziwez011-Apr-07 5:42 
QuestionAdding Control to Catalog zone at runtime (WebParts) Pin
Neo_Shehpar11-Apr-07 5:22
Neo_Shehpar11-Apr-07 5:22 
AnswerRe: Adding Control to Catalog zone at runtime (WebParts) Pin
Sandeep Akhare11-Apr-07 5:26
Sandeep Akhare11-Apr-07 5:26 
QuestionCapturing the back button on browser Pin
Ridge Howison11-Apr-07 5:11
Ridge Howison11-Apr-07 5:11 
Question<% %> usage in Design View asp.net Pin
Jay_se11-Apr-07 2:35
Jay_se11-Apr-07 2:35 
AnswerRe: <% %> usage in Design View asp.net Pin
thomasa11-Apr-07 3:00
thomasa11-Apr-07 3:00 

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.