Showing posts with label datagrid. Show all posts
Showing posts with label datagrid. Show all posts

Wednesday, March 28, 2012

ASP.NET AJAX Enabled website Problem Stack Overflow

Hi all,

I use ASP.NET AJAX Enabled website. It gives error in IE "Stack Overflow at Line : 0" while i am doing paging in datagrid or any action like button click etc.

Anyone please solve my issue.

Thanks & Regards,

Patel Nasrullah


Make sure you do not have smart navigation turnned on.


Check out this post:http://forums.asp.net/p/956056/1397151.aspx

Specifically the post bywinter: "Had this problem also, did a little search and it turns out that it may be a bug in IE6 as well... (search Microsoft KB for more on this)
However, I resolved this when I changed to SmartNavigation="true" in my config-file instead of MaintainScrollPositionOnPostback.
Also a little tip: make sure that this is not still declared in any your pages' Page-property if SmartNavigation is used in the config-file."

-Damien

asp.net Ajax datagrid?

Hi,

I am looking for a tutorial sort of thing that can guide me to build ajax enabled datagrid with functionalities like editing,deleting, sorting, paging etc in ajax mode. Right now I am able to load the datagrid ajax way but not able to find way to get other things in ajax manner. any help will be appreciated.

Regards,

Sunil

Hi Sunil,

Maybe this link can be helpfull:

http://weblogs.asp.net/rajbk/archive/2007/01/17/master-details-using-ajax-introducing-the-updatepanelpopupextender.aspx

regards,


Hi Dennis,

Thanks for your link but it is not what i want. I want that I should be doing all sort of things (editing, sorting,deleting) in grid with the help of ajax. If user does any sorting, then page should not get posted back and use ajax. same for other functionalities.I have searched google for it but didnot find any good help.

Regards,

Sunil


Maybe you just need an <asp:GridView> control inside an <asp:UpdatePanel>? (Then all the sorting/paging/editing/etc. will go through the server, but asynchronously and without reloading the page. That's the magic of the UpdatePanel!)

Wednesday, March 21, 2012

Ask about network programming tech?

hi all

i have a problem about networking programming technical like that:

in my datagrid have a checkbox column has be bound column by a boolean type data field.

the function of this checkbox column is remember record for delete or do something.

so when more one user at one-time access to this page and processing it? everything seem not synchronized.

any idea for this problem.

Thank you very much

Hi,

Based on my understanding, I think the issue is something about "Locking Architecture & SQL TRANSACTION".

For more information about SQL TRANSACTION, see:

http://msdn2.microsoft.com/en-us/library/aa224738(SQL.80).aspx(Locking Architecture)

http://www.google.com/search?hl=en&rls=com.microsoft%3Aen-us&q=SQL+TRANSACTION&btnG=Search

Best Regards,


thankJin Yu Jin

i found out other way to resolved this problem like that:

checkbox column have not bound any data field instead by javascript function to check all and checkbox item is checked by autopostback = false.

thank your idea.


Oh,Sorry, I misunderstood you by "everything seem not synchronized.", It should be "everything seem synchronized".

Best Regards,