1.how to encrpt query string in asp.net?
2.there are 10000 records then i wnat display 5000 records
one gridview and 5000 records another grid view
what is the process?

Answers were Sorted based on User's Feedback



1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records..

Answer / don

if there are 10000 records , break the records into two
half using sql quries and then by using ado.net
connectivity we can do this,

1st 5000 records: string s1=select top 5000 * from emp

2nd 5000 records: string s2=select top 5000 * from emp
order by empid desc

sqldataAdapter d1 = new sqldatAadapter(s1);
sqldataAdapter d2 = new sqldatAadapter(s2);

dataset ds = new dataset();

d1.fill(ds,"e1");
d1.fill(ds,"e2");

grid1.datasource = ds.tables["e1"];
grid1.datasource = ds.tables["e2"];

Is This Answer Correct ?    9 Yes 2 No

1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records..

Answer / paban

If the connection source is one then use limit command in
both the sql commands.

Is This Answer Correct ?    2 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

IS IT POSSIBLE TO SET TIME FOR COOKIES?HOW IT IS POSSIBLE.

1 Answers  


What is a session http?

0 Answers  


Differentiate between a hyperlink control and a linkbutton control.

0 Answers  


Define application state variable and session state variable?

0 Answers   UGC Corporation,


What is the difference between CC and BCC?

0 Answers   MCN Solutions,






what are the differences between windows services and web services?

5 Answers   Tech Mahindra,


Give an example of cookie abuse.

0 Answers  


what is CTS?

3 Answers   PrimeLine,


we can able to display a MessageBox in asp .net without using any script langages?

8 Answers   ABC,


Can you create an app domain ?

1 Answers  


How do you deploy your asp.net application?

0 Answers  


What are session objects?

0 Answers  


Categories