Click here to Skip to main content
16,004,416 members
Home / Discussions / C#
   

C#

 
QuestionLinkButton Disappears when click on it. Pin
babutkchn8-Feb-07 5:09
babutkchn8-Feb-07 5:09 
QuestionGeting the process that uses a file Pin
jiorn8-Feb-07 4:57
jiorn8-Feb-07 4:57 
GeneralRe: Geting the process that uses a file Pin
Martin#8-Feb-07 6:01
Martin#8-Feb-07 6:01 
GeneralRe: Geting the process that uses a file Pin
Luc Pattyn8-Feb-07 10:36
sitebuilderLuc Pattyn8-Feb-07 10:36 
GeneralRe: Geting the process that uses a file Pin
jiorn11-Feb-07 7:24
jiorn11-Feb-07 7:24 
QuestionGeneral Web Service Question Pin
Planker8-Feb-07 4:31
Planker8-Feb-07 4:31 
AnswerRe: General Web Service Question Pin
Ravi Bhavnani8-Feb-07 6:09
professionalRavi Bhavnani8-Feb-07 6:09 
Questiondatagrid-paging Pin
sanaziuse8-Feb-07 3:54
sanaziuse8-Feb-07 3:54 
Hi everybody
I have used a datagrid in my form. and every thing is Ok.
I can see the items I want in datagrid but the problem is about paging.
I have set the paging to 5 ..it means the datagrid should show 5 items in page 1 and the next 5 items in the next page( page 2 ) and ...
but it doesnt work ... it shows the page but when I click on page 2 it already shows the items in page 1 ...
I mean just page 1 works ...what should I do?
whats wrong with properties or code?
please tell me ...
thank you very much.
here is asection of my code :

private void Page_Load(object sender, System.EventArgs e)
{
if (!IsPostBack)
{
FillDataGrid();
}
}
private void FillDataGrid()
{
cUpload upload=new cUpload();
bool Success;
dsUpload1=upload.GetAllUpload(out Success);
if(Success)
{
dgUpLoad.DataSource=dsUpload1.tblUpLoad;

}
dgUpLoad.DataBind();
}
AnswerRe: datagrid-paging Pin
ednrgc8-Feb-07 4:40
ednrgc8-Feb-07 4:40 
QuestionOpen Excel File Stored in Access Database Pin
Shaurya_Rastogi8-Feb-07 3:35
Shaurya_Rastogi8-Feb-07 3:35 
Question<script languaage="c#" runat="server">... Pin
acodman8-Feb-07 3:24
acodman8-Feb-07 3:24 
AnswerRe: <script languaage="c#" runat="server">... Pin
Guffa8-Feb-07 3:29
Guffa8-Feb-07 3:29 
GeneralRe: <script languaage="c#" runat="server">... Pin
acodman8-Feb-07 5:15
acodman8-Feb-07 5:15 
AnswerRe: <script languaage="c#" runat="server">... Pin
Zach Burnett8-Feb-07 8:16
Zach Burnett8-Feb-07 8:16 
QuestionHow to know when an image was successfully loaded into a picturebox from url Pin
Subterranean8-Feb-07 3:22
Subterranean8-Feb-07 3:22 
AnswerRe: How to know when an image was successfully loaded into a picturebox from url Pin
Ravi Bhavnani8-Feb-07 6:11
professionalRavi Bhavnani8-Feb-07 6:11 
AnswerRe: How to know when an image was successfully loaded into a picturebox from url Pin
Patrick Etc.8-Feb-07 11:55
Patrick Etc.8-Feb-07 11:55 
GeneralRe: How to know when an image was successfully loaded into a picturebox from url Pin
Subterranean9-Feb-07 1:33
Subterranean9-Feb-07 1:33 
QuestionDatabase Routines Pin
Wayne Phipps8-Feb-07 2:58
Wayne Phipps8-Feb-07 2:58 
AnswerRe: Database Routines Pin
Colin Angus Mackay8-Feb-07 3:33
Colin Angus Mackay8-Feb-07 3:33 
GeneralRe: Database Routines Pin
Wayne Phipps9-Feb-07 5:02
Wayne Phipps9-Feb-07 5:02 
QuestionExporting DataGrid to Excel Pin
pssuresh8-Feb-07 2:52
pssuresh8-Feb-07 2:52 
AnswerRe: Exporting DataGrid to Excel Pin
Sandeep Akhare8-Feb-07 3:11
Sandeep Akhare8-Feb-07 3:11 
GeneralRe: Exporting DataGrid to Excel Pin
pssuresh8-Feb-07 3:24
pssuresh8-Feb-07 3:24 
GeneralRe: Exporting DataGrid to Excel Pin
Sandeep Akhare8-Feb-07 3:44
Sandeep Akhare8-Feb-07 3:44 

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.