hi guys
I have one of those weired ones
I have a aspx page that has the code in the aspx file versus external vb file.
in this aspx file I have below script
1 Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
2
3 End Sub
4 Protected Sub txtid_Init(ByVal sender As Object, ByVal e As System.EventArgs)
5 If Me.txtid.Text = "" Then
6 Dim bn As Integer = biletnumarasial()
7 Me.txtid.Text = bn
8 End If
9
10 End Sub
11
when I use line 6 and 7 in page_load sub it won't work
I put the same code as shown above it works of course I had to put if condition there becuase it is running more then once because of postbacks (I guess)
anyway if you want to hear one more weired thing, when I put a breakpoint (red dot on left of line) I can't VWD won't stop but, if I put breakpoint in "txtid_init sub" it breaks.
so, my debug=true on aspx file, IE setting and asp.net server config
Please help before I pul the last hair from head.
Thanks in advance.
Cemal