Click here to Skip to main content
15,888,579 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: CSS Underlining Pin
Matt Newman4-Apr-07 7:35
Matt Newman4-Apr-07 7:35 
Questioncode behind textbox text Pin
indian1433-Apr-07 5:54
indian1433-Apr-07 5:54 
AnswerRe: code behind textbox text Pin
badgrs4-Apr-07 0:18
badgrs4-Apr-07 0:18 
AnswerRe: code behind textbox text Pin
Pete O'Hanlon4-Apr-07 10:05
mvePete O'Hanlon4-Apr-07 10:05 
QuestionIt's agent(sending a message) Pin
Oga M3-Apr-07 4:16
Oga M3-Apr-07 4:16 
QuestionADO problem running classic ASP in Vista Pin
allende3-Apr-07 1:28
allende3-Apr-07 1:28 
QuestionDiv ASP.NET Controlls at runtime Pin
L Viljoen2-Apr-07 21:24
professionalL Viljoen2-Apr-07 21:24 
AnswerRe: Div ASP.NET Controlls at runtime Pin
Paddy Boyd2-Apr-07 21:46
Paddy Boyd2-Apr-07 21:46 
GeneralRe: Div ASP.NET Controlls at runtime Pin
L Viljoen2-Apr-07 22:17
professionalL Viljoen2-Apr-07 22:17 
GeneralRe: Div ASP.NET Controlls at runtime Pin
DavidNohejl2-Apr-07 22:46
DavidNohejl2-Apr-07 22:46 
GeneralRe: Div ASP.NET Controlls at runtime Pin
L Viljoen2-Apr-07 22:57
professionalL Viljoen2-Apr-07 22:57 
GeneralRe: Div ASP.NET Controlls at runtime Pin
Paddy Boyd2-Apr-07 22:46
Paddy Boyd2-Apr-07 22:46 
GeneralRe: Div ASP.NET Controlls at runtime Pin
L Viljoen2-Apr-07 23:03
professionalL Viljoen2-Apr-07 23:03 
AnswerRe: Div ASP.NET Controlls at runtime Pin
badgrs3-Apr-07 0:02
badgrs3-Apr-07 0:02 
GeneralRe: Div ASP.NET Controlls at runtime Pin
L Viljoen3-Apr-07 0:08
professionalL Viljoen3-Apr-07 0:08 
Questionopengl web application Pin
P e t e r2-Apr-07 21:12
P e t e r2-Apr-07 21:12 
QuestionWSE 3.0 Silent Installation Pin
pranu_132-Apr-07 21:03
pranu_132-Apr-07 21:03 
QuestionVBS help Pin
Sachin Pimpale2-Apr-07 19:59
Sachin Pimpale2-Apr-07 19:59 
AnswerRe: VBS help Pin
andyharman3-Apr-07 0:52
professionalandyharman3-Apr-07 0:52 
QuestionUsing an Image for a border Pin
Leo Smith2-Apr-07 8:21
Leo Smith2-Apr-07 8:21 
AnswerRe: Using an Image for a border Pin
badgrs2-Apr-07 23:52
badgrs2-Apr-07 23:52 
GeneralRe: Using an Image for a border Pin
Leo Smith3-Apr-07 9:16
Leo Smith3-Apr-07 9:16 
QuestionDataGrid Question Pin
No-e2-Apr-07 8:21
No-e2-Apr-07 8:21 
I have a simple form with a data grid, I try to populate teh datagrid with a proces similar to the following:

      <br />
Dim sqlStatement As String<br />
            sqlStatement = "Select systemName, LotID from tblStatusLot "<br />
            Dim cmd As New SqlCommand(sqlStatement, cn)<br />
            Dim dr As SqlDataReader = cmd.ExecuteReader<br />
            Do While dr.Read()<br />
                MyDataRow = dt.NewRow()<br />
                MyDataRow(0) = dr.GetString(0)<br />
                MyDataRow(1) = dr.GetString(1)<br />
                dt.Rows.Add(MyDataRow)<br />
            Loop<br />
            cn.Close()<br />
<br />
            Dim dv As New DataView(dt)<br />
            DataGrid1.DataSource = dv<br />
            DataGrid1.DataBind()<br />


This seems to work fine, the question I have now is how do I go about allowing the user to scroll through is there are more than the 10 records (pageSize is set to 10, AllowPaging and Allow Custom paging are on) The problem is I am not sure how to use this control, but you need to start someplace.....

Help has an example, but they do not use a SQL data set. If someone has a simple example that would be great.

Thanks in advance
QuestionTreeView help!! Pin
r_jaz2-Apr-07 5:43
r_jaz2-Apr-07 5:43 
QuestionPrinting a variable string using javascript [modified] Pin
indian1432-Apr-07 3:32
indian1432-Apr-07 3:32 

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.