Click here to Skip to main content
15,887,985 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: Page controls keeps same content after postback? Pin
Abhijit Jana13-Jun-10 9:05
professionalAbhijit Jana13-Jun-10 9:05 
GeneralRe: Page controls keeps same content after postback? Pin
Brij13-Jun-10 21:08
mentorBrij13-Jun-10 21:08 
AnswerRe: Page controls keeps same content after postback? Pin
Abhijit Jana13-Jun-10 9:00
professionalAbhijit Jana13-Jun-10 9:00 
GeneralRe: Page controls keeps same content after postback? Pin
lvq68413-Jun-10 21:17
lvq68413-Jun-10 21:17 
QuestionSome text is missing when converting from HTML to PDF! Pin
Member 446383913-Jun-10 1:24
Member 446383913-Jun-10 1:24 
Questioniam getting error in group by condition in ado.net Pin
developerit12-Jun-10 22:37
developerit12-Jun-10 22:37 
AnswerRe: iam getting error in group by condition in ado.net Pin
i.j.russell12-Jun-10 23:23
i.j.russell12-Jun-10 23:23 
QuestionError in dropdownlist binding Pin
mominafiz12-Jun-10 4:38
mominafiz12-Jun-10 4:38 
i have created drop downdownlist and i m binding it with the testnames in the database.

  Private Function load_sptestreqtestnameddl()
 
        Dim Adptr As New SqlDataAdapter
        Dim Pkgddldt As New DataSet

        '##################     FOR CONNECTION  ################

        Dim MySearchCon As DbConnection = providerFactory.CreateConnection()
        MySearchCon.ConnectionString = connectionString.ConnectionString

        '###################  END OF CONNECTION #################

        Dim str As String = Nothing
        str = ("SELECT test_id, test_name FROM TestName")

        Adptr = New SqlDataAdapter(str, MySearchCon)
        Adptr.Fill(Pkgddldt)

        sptestreqtestnameddl.DataSource = Pkgddldt
        sptestreqtestnameddl.DataSource = Pkgddldt.Tables(0)
        sptestreqtestnameddl.DataTextField = Pkgddldt.Tables(0).Columns("test_name").ColumnName.ToString
        sptestreqtestnameddl.DataValueField = Pkgddldt.Tables(0).Columns("test_id").ColumnName.ToString
       
 sptestreqtestnameddl.DataBind()
        Return 0
End sub


the code shows me following error....this exactly same code works perfect in other webforms.

'sptestreqtestnameddl' has a SelectedValue which is invalid because it does not exist in the list of items. Parameter name: value
AnswerRe: Error in dropdownlist binding Pin
Shahriar Iqbal Chowdhury/Galib12-Jun-10 5:11
professionalShahriar Iqbal Chowdhury/Galib12-Jun-10 5:11 
AnswerRe: Error in dropdownlist binding Pin
Blue_Boy12-Jun-10 20:47
Blue_Boy12-Jun-10 20:47 
QuestionScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
giantsover11-Jun-10 23:17
giantsover11-Jun-10 23:17 
AnswerRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
Estys12-Jun-10 0:20
Estys12-Jun-10 0:20 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
giantsover12-Jun-10 1:46
giantsover12-Jun-10 1:46 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
Estys12-Jun-10 2:12
Estys12-Jun-10 2:12 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
giantsover12-Jun-10 2:32
giantsover12-Jun-10 2:32 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
Estys12-Jun-10 3:19
Estys12-Jun-10 3:19 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
giantsover12-Jun-10 3:44
giantsover12-Jun-10 3:44 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
Estys12-Jun-10 3:55
Estys12-Jun-10 3:55 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
giantsover12-Jun-10 6:37
giantsover12-Jun-10 6:37 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
Estys12-Jun-10 7:09
Estys12-Jun-10 7:09 
GeneralRe: ScriptManager in Usercontrol is not feasible if I already have an Script Manager in Aspx ? Pin
giantsover13-Jun-10 7:35
giantsover13-Jun-10 7:35 
Questionjquery in asp.net+server side execution Pin
trilokharry11-Jun-10 19:29
trilokharry11-Jun-10 19:29 
AnswerRe: jquery in asp.net+server side execution Pin
saini arun11-Jun-10 20:21
saini arun11-Jun-10 20:21 
GeneralRe: jquery in asp.net+server side execution Pin
trilokharry11-Jun-10 21:28
trilokharry11-Jun-10 21:28 
GeneralRe: jquery in asp.net+server side execution Pin
saini arun11-Jun-10 22:40
saini arun11-Jun-10 22:40 

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.