Click here to Skip to main content
16,016,770 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Saving files on the server?? Pin
Nada Adel6-May-07 20:20
Nada Adel6-May-07 20:20 
Questionhelp me its urgent Pin
Tanvisha4-May-07 19:55
Tanvisha4-May-07 19:55 
AnswerRe: help me its urgent Pin
amjad ali shah4-May-07 20:17
amjad ali shah4-May-07 20:17 
GeneralRe: help me its urgent Pin
Tanvisha4-May-07 20:38
Tanvisha4-May-07 20:38 
GeneralRe: help me its urgent Pin
amjad ali shah4-May-07 20:55
amjad ali shah4-May-07 20:55 
Questionhow to make multiple item selected in list box . Pin
monuSaini4-May-07 19:54
monuSaini4-May-07 19:54 
AnswerRe: how to make multiple item selected in list box . Pin
Sathesh Sakthivel4-May-07 21:02
Sathesh Sakthivel4-May-07 21:02 
Questionfindcontrol function do not detect the dropdownlist created dynamically Pin
amjad ali shah4-May-07 19:25
amjad ali shah4-May-07 19:25 
i have created a number of combo boxes according to my need.no i want to save the changes when any one click update button,but here the control did not find by findcontrol function.
Dim i, j, totc As Long, FcNo As String, cmbcat As Object, fid As ArrayList
catarry = New ArrayList
catarry = CType(ViewState("catgs"), ArrayList)
totc = CLng(ViewState("totcts"))

For i = 0 To totc - 1
'for category combo box
'cmbcat = New Object
'cmbcat = CType(Me.FindControl("catpp" & catarry(i * 3 + 1)), DropDownList)
'cmbcat = CType(Me.FindControl("catpp" & catarry(i * 3 + 1)), DropDownList)
'cmbcat = CType(Me.FindControl("catpp" & catarry(i * 3 + 1)), DropDownList)
If Not CType(Me.FindControl("catpp" & catarry(i * 3 + 1)), DropDownList) Is Nothing Then
FcNo = CType(Me.FindControl("catpp" & catarry(i * 3 + 1)), DropDownList).Text
End If
StrQry = "update category set cat_order=" & FcNo & " where cat_no=" & "catpp" & catarry(i * 3 + 1)
'Now check for all forums of category
fid = New ArrayList
fid = AllFunctions.PopToarraylist("select Forum_No from Forum where cat_no=" & catarry(i * 3 + 1), 1)
For j = 0 To fid.Count - 1
cmbcat = New Object
'cmbcat = CType(FindControl("frmpp" & fid(i)), DropDownList)
'cmbcat = CType(FindControl("frmpp" & fid(i)), DropDownList)
'cmbcat = CType(FindControl("frmpp" & fid(i)), DropDownList)
If Not CType(Me.FindControl("frmpp" & fid(i)), DropDownList) Is Nothing Then
FcNo = CType(FindControl("frmpp" & fid(i)), DropDownList).Text
End If
'cmbcat.Text
StrQry = "update Forum set Forum_Order=" & FcNo & " where forum_no=" & fid(i)
AllFunctions.UpdateQry(StrQry)
Next
Next

AnswerRe: findcontrol function do not detect the dropdownlist created dynamically Pin
Hesham Amin4-May-07 22:20
Hesham Amin4-May-07 22:20 
GeneralRe: findcontrol function do not detect the dropdownlist created dynamically Pin
amjad ali shah4-May-07 22:25
amjad ali shah4-May-07 22:25 
QuestionDownloading link Pin
sujithkumarsl4-May-07 18:21
sujithkumarsl4-May-07 18:21 
AnswerRe: Downloading link Pin
Blumen6-May-07 20:23
Blumen6-May-07 20:23 
GeneralRe: Downloading link Pin
sujithkumarsl6-May-07 22:04
sujithkumarsl6-May-07 22:04 
QuestionInserting Data Into DB Pin
Lijo Rajan4-May-07 18:05
Lijo Rajan4-May-07 18:05 
AnswerRe: Inserting Data Into DB Pin
Sathesh Sakthivel4-May-07 21:03
Sathesh Sakthivel4-May-07 21:03 
QuestionDebugging unmanaged Native DLL in ASP.net Pin
The 0ne4-May-07 13:43
The 0ne4-May-07 13:43 
AnswerRe: Debugging unmanaged Native DLL in ASP.net Pin
Sathesh Sakthivel4-May-07 21:05
Sathesh Sakthivel4-May-07 21:05 
GeneralRe: Debugging unmanaged Native DLL in ASP.net Pin
The 0ne5-May-07 7:26
The 0ne5-May-07 7:26 
QuestionDrop Down List Pin
seemamltn4-May-07 13:00
seemamltn4-May-07 13:00 
AnswerRe: Drop Down List Pin
SABhatti4-May-07 16:28
SABhatti4-May-07 16:28 
AnswerRe: Drop Down List Pin
Partha G4-May-07 17:36
Partha G4-May-07 17:36 
AnswerRe: Drop Down List Pin
Kartik Rathi4-May-07 18:35
Kartik Rathi4-May-07 18:35 
Questionmy formView has not edit,delete,new buttons Pin
hdv2124-May-07 11:59
hdv2124-May-07 11:59 
AnswerRe: my formView has not edit,delete,new buttons Pin
aransiola5-May-07 0:39
aransiola5-May-07 0:39 
QuestionHelp Please Pin
yasso_1154-May-07 11:24
yasso_1154-May-07 11:24 

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.