Click here to Skip to main content
15,886,873 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Creating PDF file using itextSharp dll Pin
ksarchana6-May-09 23:22
ksarchana6-May-09 23:22 
Questioncalendar control Pin
scar_face29-Apr-09 19:23
scar_face29-Apr-09 19:23 
AnswerRe: calendar control Pin
Spunky Coder29-Apr-09 19:30
Spunky Coder29-Apr-09 19:30 
GeneralRe: calendar control Pin
scar_face29-Apr-09 19:37
scar_face29-Apr-09 19:37 
GeneralRe: calendar control Pin
Spunky Coder29-Apr-09 19:50
Spunky Coder29-Apr-09 19:50 
AnswerRe: calendar control Pin
Abhijit Jana29-Apr-09 19:49
professionalAbhijit Jana29-Apr-09 19:49 
AnswerRe: calendar control Pin
saanj29-Apr-09 23:20
saanj29-Apr-09 23:20 
QuestionCheckboxlist in datalist Pin
indian2229-Apr-09 18:10
indian2229-Apr-09 18:10 
Public Function PopulateList() As DataSet
       
       
        Dim cmd As New SqlCommand("select qt.department as dept, qt.custid as cusid, q.qotranid as qotranid,q.qoid as qoid,q.productid as proid,q.productname as pname,q.description as descr,q.qnty as qnty,q.price as price,q.tax as tax,q.total as total from quotation q ,quotetran qt where q.qotranid='" & ddlqo.SelectedItem.Text & "' and qt.qotranid='" & ddlqo.SelectedItem.Text & "'  ", myConnection6)
        myConnection6.Open()

        Dim myDataReader As SqlDataReader
        myDataReader = cmd.ExecuteReader()
        While (myDataReader.Read()) = True

            pid = myDataReader("proid")
            Dim ad As New SqlDataAdapter("SELECT q.productid,s.productid,s.serialno as serialno from stockserialno s,quotation q where q.qotranid='" & Trim(ddlqo.SelectedItem.Text) & "' and q.productid=s.productid  and s.status='A' and s.productid='" & productid1.Text & "'  ", myConnection3)

            ad.Fill(ds1, "stockserialno")
           
        End While
        myDataReader.Close()
        myConnection6.Close()
 Return ds1
    End Function


I have tried above code but it display all the items in every row,but I need to display only those items that coresponding to paricular row.how can i do that?
AnswerRe: Checkboxlist in datalist Pin
SayreCC29-Apr-09 19:16
SayreCC29-Apr-09 19:16 
GeneralRe: Checkboxlist in datalist Pin
indian2229-Apr-09 21:12
indian2229-Apr-09 21:12 
QuestionRegarding installation of Visual Studio Webdeveloper Pin
Ivan200929-Apr-09 15:35
Ivan200929-Apr-09 15:35 
AnswerRe: Regarding installation of Visual Studio Webdeveloper Pin
Christian Graus29-Apr-09 16:09
protectorChristian Graus29-Apr-09 16:09 
GeneralRe: Regarding installation of Visual Studio Webdeveloper Pin
Ivan200929-Apr-09 19:30
Ivan200929-Apr-09 19:30 
AnswerRe: Regarding installation of Visual Studio Webdeveloper Pin
SayreCC29-Apr-09 19:17
SayreCC29-Apr-09 19:17 
Questiongetting "Microsoft JScript runtime error: Object expected" Pin
Wes Jones29-Apr-09 14:07
Wes Jones29-Apr-09 14:07 
AnswerRe: getting "Microsoft JScript runtime error: Object expected" Pin
SayreCC29-Apr-09 15:19
SayreCC29-Apr-09 15:19 
GeneralRe: getting "Microsoft JScript runtime error: Object expected" Pin
Wes Jones29-Apr-09 16:56
Wes Jones29-Apr-09 16:56 
AnswerRe: getting "Microsoft JScript runtime error: Object expected" Pin
dotnetmember29-Apr-09 17:38
dotnetmember29-Apr-09 17:38 
GeneralRe: getting "Microsoft JScript runtime error: Object expected" Pin
Wes Jones29-Apr-09 17:49
Wes Jones29-Apr-09 17:49 
Questionadding repeater at runtime, Pin
mark_me29-Apr-09 12:48
mark_me29-Apr-09 12:48 
Questionpageload/onloadcomplete Pin
mark_me29-Apr-09 12:14
mark_me29-Apr-09 12:14 
AnswerRe: pageload/onloadcomplete Pin
Christian Graus29-Apr-09 15:08
protectorChristian Graus29-Apr-09 15:08 
GeneralRe: pageload/onloadcomplete Pin
mark_me29-Apr-09 15:33
mark_me29-Apr-09 15:33 
GeneralRe: pageload/onloadcomplete Pin
Christian Graus29-Apr-09 16:23
protectorChristian Graus29-Apr-09 16:23 
QuestionAsp.net testing server problem Pin
ahawari0929-Apr-09 11:10
ahawari0929-Apr-09 11:10 

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.