for set ID by asp table, you use as below TableCell c=new TableCell(); c.ID = "cell_" + st; Thanks, Amit
With Regards, Amit Patel 91-9328488961 India
for set ID by asp table, you use as below TableCell c=new TableCell(); c.ID = "cell_" + st; Thanks, Amit
With Regards, Amit Patel 91-9328488961 India
Hi Vijay, You can handle this thing by get listview to put one label or textbox(if required edit) and maintain two separate dataset that can be stored in view state and for final save all dataset from view state need to save in database. OR Rather than dataset we can handle all this stuff by using javascript but that is little bit tricky so that good approach is take listview/gridview and implement all part in update panel so it would avoid full page post back call. Thanks, Amit
With Regards, Amit Patel 91-9328488961 India
Yes I am also agree with previous answers, in your case you need to do paging in your database side and each paging time you need to bind grid with new fatched from DB. For paging in Database you can use below logic
select top x * from dbo.EmpDetails where ID not in (select top (x*(p-1))ID from dbo.EmpDetails order by ID)
order by ID
Here X = No records per Page P = Page no.
With Regards, Amit Patel 91-9328488961 India
Hi For Developing Multi-Language site you can achieve this by .net Satelite Assebly concept(globaluzation and localization). For that you need to create seperate resource file for your required language along with all relavant text in respective languages. After then in application all caption, messages and instructins just use relavant key of resorce file so that application pick actual value from relavant resource file with respective lanaguge. With this way it will directly map resource file with client's browser's Language or you can set with client's selection (given dropdown ) and set resource in any of the base pages which you can derieved from all pages and get its value in every page of the application. For how to create Resource file and how to use it please refer below Mircosoft articale. http://msdn.microsoft.com/en-us/library/ms228208.aspx[^]
With Regards, Amit Patel 91-9328488961 India