Showing posts with label point. Show all posts
Showing posts with label point. Show all posts

Wednesday, March 28, 2012

pagemethod call code sample

Can anyont point me to a code sample where a call is made to a server page method from the client script code?

thanks!

Pratibha

Hi,

please checkthis post from my blog.

Monday, March 26, 2012

PageRequestManagerServerErrorException error code 12029

We seem to intermittently get a PageRequestManagerServerErrorException with the error code 12029, could someone explain that error code or point to documentation ? This happens on about 1 / 40 requests and the page is nothing special, just a datagrid inside an updatepanel and with a custom progressbar which is just a div with an animated gif that appears on beginRequest and hides on endRequest.

When you see this error is in an alert box from javascript? Are you using the latest and greatest release?

Is this on a form that requires the user to be logged in..it may be could not authenticate error... If you use fiddler and attach to it - it will actually give you the real error message on why it was aborted...if you do the digging...The SCM traps and surpresses alot of the serverside errors (in my opinion)... so when a session expires...unfortunately the ajax error codes do not map to IIS error codes...


I get the same ...

Have a ticker-tape-liek page that updates every 5 seconds .. eventually, teh session expires on teh authenticated page and I get this nasty message.


I get the same ...

Have a ticker-tape-liek page that updates every 5 seconds .. eventually, the session expires on teh authenticated page and I get this nasty message.


So the problem is the session expiring? Can you use sliding experation in forms? So the user will stay there as long as there are requests from that session?

Two solutions for you:

1. One change your web.config to allow for longer sessions - by default I think .Net 2.0 the timeout is 10 minutes (in 1.1 it was 15)

<authentication mode="Forms">
<forms loginUrl="Users_Login.aspx"timeout="555555555"/>
</authentication>

2. If that is an issue - create a IFRAME that loads a blank .aspx page that has the meta tag refresh to like every 10 minutes or something - and embedded it at the bottom of the page and merely add the style: display: none to it (so it doesn't actually show but is still visible...

3. If the ticker is calling back to the server to update the ticker or whatever - change the service you are using to actually also check for authentification (I am not sure how the authentification service works that Ajax has - but I believe the ajax.asp.net sdocumentation site has some examples...(so I don't really call this a solution ...as I have no idea how to implement it...)

The above should help you with your situation...


Hi!

I'm getting the same error, it's happening completely random and i'm sure it's not time out related

Besides any workaround, I think that the best way to solve it would be to be able to know what's error number 12029.

Any of the AJAX developers could clarify this?

Regards,

Juan


Are you using fiddler? You should...It'll tell you what exactly caused the error...there are also a couple of good extensions for firefox that will help debug the issue as well...

Also note that setting compilation debug to true and trace enabled also cause sporadic behavior when it comes to ajax...Also - do a search on the forums here for exception handling - it is possible to track the exception generated by ajax and log it... and there a few forum posts on the procedure for doing this (also code examples on the ajax.asp.net documentation site)...


Jody, thanks for your answer,


- It happens with or without debug=true: i'm testing it with the VS ASPNET server, with IIS 5 and with IIS 6. It happens everywhere and randomly, regardless of the debug setting. And I'm not tracing anywhere.

- I'm already logging the exception into SQL using this:

Protected Sub ScriptManager1_AsyncPostBackError(ByVal sender As Object, ByVal e As Microsoft.Web.UI.AsyncPostBackErrorEventArgs) Handles ScriptManager1.AsyncPostBackError
Dim conn As New SqlConnection
Try
conn.ConnectionString = ConfigurationManager.ConnectionStrings("ApplicationDatabase").ConnectionString
Dim comm As SqlCommand = conn.CreateCommand
comm.CommandText = "AjaxRecordError"
comm.CommandType = CommandType.StoredProcedure
comm.Parameters.AddWithValue("exMessage", e.Exception.Message)
comm.Parameters.AddWithValue("exStack", e.Exception.StackTrace)
comm.Parameters.AddWithValue("exSource", e.Exception.Source)
comm.Parameters.AddWithValue("exServerName", Server.MachineName)
comm.Parameters.AddWithValue("date", DateTime.UtcNow)
comm.Parameters.AddWithValue("ip", Request.UserHostAddress)
conn.Open()
comm.ExecuteNonQuery()
Catch ex As Exception
Finally
conn.Close()
End Try

So, i'm actually tracking the exception, but it isn't very helpful anyway (at least for me! :) ) :

Here is one of the records (which are all the same BTW):

exception.Message = "Input string was not in a correct format."

exception.StackTrace = " at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at System.Web.UI.WebControls.ImageButton.LoadPostData(String postDataKey, NameValueCollection postCollection)
at System.Web.UI.WebControls.ImageButton.System.Web.UI.IPostBackDataHandler.LoadPostData(String postDataKey, NameValueCollection postCollection)
at System.Web.UI.Page.ProcessPostData(NameValueCollection postData, Boolean fBeforeLoad)
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)"

exception.Source = "mscorlib"

I can see from this that is something related with parsing (I think), but as it's happening randomly, without pattern, I can't find where to start looking at.

And, finally, I'm already using Fiddler, but I must admit that I don't know where to dig to help me with the issue.

Any further help would be really appreciated! :)

Juan


Idea here:

Fiddler can be confusing sometimes. It does a take a bit to analyze...The important ones to look at are naturally any 404 errors.. Check the Headers tags when you go clicking through to inpect...

However, - I have found that that with XP - that the number of connections is limited to 10 using the IIS 5 server for XP... This causes issues because at times it doesn't matter how many times you restart IIS or close and open the broswer it doesn't go away sometimes.

I am asuming that you are stating that you are getting these errors from a remote server and not your dev xp machine?

Check your event log under applications:

The following exception was thrown by the web event provider 'EventLogProvider' in the application '/SitesEasyTest' (in an application lifetime a maximum of one exception will be logged per provider instance):

System.Web.HttpException: The EventLogWebEventProvider provider failed to log an event with the error code 0x800705DE.
at System.Web.Management.EventLogWebEventProvider.ProcessEvent(WebBaseEvent eventRaised)
at System.Web.Management.WebBaseEvent.RaiseInternal(WebBaseEvent eventRaised, ArrayList firingRuleInfos, Int32 index0, Int32 index1)

For more information, see Help and Support Center at

Is symbolic of too many connections from one client and events are occuring so rapidly that the application can can not throw any more exceptions due to connection issues...

Another error to check is this one:

Event code: 3005
Event message: An unhandled exception has occurred.
Event time: 11/4/2006 1:25:21 PM
Event time (UTC): 11/4/2006 9:25:21 PM
Event ID: 956e4d1c3b334e5895a42e0f0706badc
Event sequence: 32
Event occurrence: 2
Event detail code: 0

Application information:
Application domain: /LM/W3SVC/1/Root/SitesEasyTest-7-128071478278125000
Trust level: Full
Application Virtual Path: /SitesEasyTest
Application Path: D:\Sites-Easy\Web\
Machine name: SITES-EASY

Process information:
Process ID: 1472
Process name: aspnet_wp.exe
Account name: SITES-EASY\ASPNET

Exception information:
Exception type: NullReferenceException
Exception message: Object reference not set to an instance of an object.

Request information:
Request URL: http://localhost/SitesEasyTest/default.aspx
Request path: /SitesEasyTest/default.aspx
User host address: 127.0.0.1
User:
Is authenticated: False
Authentication Type:
Thread account name: SITES-EASY\ASPNET

Thread information:
Thread ID: 6
Thread account name: SITES-EASY\ASPNET
Is impersonating: False
Stack trace: at Cavalia.SkinHandler.GridViewModal.InitializeSkin(Control skin) in D:\Sites-Easy\Core Modules\Cavalia.SkinHandler\GridViewModal.cs:line 322
at Cavalia.SkinHandler.SkinnedCommunityControl.CreateChildControls() in D:\Sites-Easy\Core Modules\Cavalia.SkinHandler\SkinnedCommunityControl.cs:line 223
at System.Web.UI.Control.EnsureChildControls()
at Cavalia.Admin.EditSectionsDefault.OnLoad(EventArgs e) in D:\Sites-Easy\Admin\Admin\EditSections\EditSectionsDefault.cs:line 244
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Control.LoadRecursive()
at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)


Custom event details:

For more information, see Help and Support Center at

This one while confusing - when compared to the corresponding SCM error message - is actually that the SCM tried processing a request but the connection was reset yet - it still trys to restablish as another event needs something - such as say image retrieval for rebuilding the page. I had issue as well and it ended up being a image that when the ajax update panel was initialized the first time - all worked well, but then on subsequent requests - the failure on the image always caused the 'Input String of the Format" as the SCM expected a image but instead it got a 404 error page from the server...the page still rendered properly and worked after clicking ok on the error... none theless once I corrected that - I stopped getting the errors..

I think that those developing the SCM should also check the stream incoming and abort on the processing of those kind of messages...depending on the type that the scm is trying to request...

See if any of that helps.. Also - try it with the browser settings not set to Every Time and instead Automatically. If its a connection issue you may find that the issue does stop appearing as in alot of cases - I'll see 30 some requests constantly if say I am loading multiple dynamic controls in say a modal popup or something...


Jody, thanks for your info.

BTW, i;m getting this errors from BOTH my local dev machine with WIn XP and from the remote staging server with Windows Server 2000 R2.

It's interesting what you say about images, because my error is happening after refreshing a GridView that's inside an UpdatePanel, and this GridView contains a lot of templated columns with graphics.

Also, after clicking "ok" on the javascript alert the page just renders fine and you are know until the next random error happens.

I think it's worthwhile to try into that direction, before something else. Could you please share with me the solution you've used to correct that?. I know that in the AJAX documentation there is information about how to handle custom errors, but it involves writing javascript, on which i'm not very good. I just want to "clear" the error and not display an alert conditioned to if the error is of type "Input String of the Format"

Regards,

Juan


<authentication mode="Forms">
<forms loginUrl="Users_Login.aspx"timeout="555555555"/>
</authentication>

AH!! Then any hit to the website will create a session that will use memory for ever, if I create a program that hits the website every second in less than an hour the garbage collection will be kicking in!Stick out tongue


<authentication mode="Forms">
<forms loginUrl="Users_Login.aspx"timeout="555555555"/>
</authentication>

AH!! Then any hit to the website will create a session that will usememory for ever, if I create a program that hits the website everysecond in less than an hour the garbage collection will be kicking in!Stick out tongue

Actually - you are incorrect - the session will not remain in memory forever on the server side... it merely means that the authentification cookie is not expired...and therefore continuous checks are not made if the cookie is valid... therefore when the authentification occurs it doesn't actually have to do the whole process... the timeout period merely says keep the authentication cookie valid for x period of time... If your case was correct - sites like this would either a billion servers or constantly crash...Sever side - it would not matter a session is a session...it will be created regardless - the server side session management still purges inactive sessions from memory on regular basis - all the timeout value does is instruct that if the user connects again - don't destroy the cookie when re-authenticating and consider it valid instead...and use what is stored instead of going through the whole process of reconstruction...

See this article for more info on this...


Don't quote me on this as my memory is foggy on Windows 2000. Windows 2000 actually has a connection limit per client / machine. There is a registry change you can do to increase this...however, it does expose a security risk so modify with caution .. I'll give you reference to this doc:download.microsoft.com/download/2/8/0/2800a518-7ac6-4aac-bd85-74d2c52e1ec6/tuning.doc

As for how I fixed my issue... I fixed all of the urls for the images...

I'll give you a caveat however... if you use a dynamic site structure... one of two of these observations may be relevant to you.

1. With dynamic sites - in some cases the urls being requested are mapped to the root url of the site and not the actual dynamic url that should be generated - So, I fixed that code in the toolkit and recompiled. That solved half of my problems... (See my blog entry titled "Bizzarre"... how ever - if you are using master pages and all that then it won't be relevant to you...

2. I had and still have had issues with dynamically generating url paths when a SCM is on the page.

For instance - I rely heavily on this kind of syntax: ImageUr l= '<%# ResolveUrl("~/Images/admin/collapse.jpg")%>'

It generates the actual physical path to the image. It doesn't work in a page with a SCM..(although does everywhere else) So I have to resort to defining the imageurl in codebehind - which does work...And this goes for the Gridview. Defining images statically (int the ascx or aspx page) works but not if some kind of dynamic generation in the aspx or ascx page...but if you do it codebehind - it works...

So correcting both of those issues resolved my issue (keep in mind that each request for a image is actually a separate connection to the server)...

For suppressing the error message and 'pretending it didn't happen on the client side..... there is a great example on the docs site...

So, hopefully that will help...

Wednesday, March 21, 2012

Parser Error <atlas:ScriptManager ID="sm" runat="server" EnablePartialRendering="True"&

I am getting the following error, and I have no idea where it is coming from, can anyone point me in the right direction please?

Line 31: </asp:DropDownList><br />Line 32: <br />Line 33: <atlas:ScriptManager ID="sm" runat="server" EnablePartialRendering="True">Line 34: <Scripts>Line 35: <atlas:ScriptReference Path="../../Includes/TextChangedBehavior.js" />

Rich

Can you provide a little more information please. Be a little more detailed.

From the looks of it...why are you using ATLAS? Upgrade to AJAX's newest version. One thought could be to Reigster your Toolkit at the top of your .aspx page.

Thanks,


Double checking your web.config should probably be the first step. Are you actually running the older, Atlas version or is that just the tag prefix you chose?

Make sure you have this line in your web.config:

<add tagPrefix="atlas" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>

You can check the rest of your web.config against these guidelines: http://www.asp.net/ajax/documentation/live/ConfiguringASPNETAJAX.aspx

Partial Rendering and Javascript

Hello Again,
I would like to point out an additional bug regarding my previous post (rendering JavaScript while using Atlas Partial Rendering);

1. Dynamically rendered script which returns to the client Atlas framework after performing a partial update isn't evaluated.
The simplest case could be a javascriptalert(msg)not being called if rendered dynamically usingPage.ClientScript.RegisterClientScript(...).
This apparently simple bug causesmanyproblems with in-house and commecial WebControls that must render Javascript in order to function.

2. An additional question. I noticed that OnPreRender is called on an UpdatePanel even if it wasn't updated (while using Condition update-mode, of course). Should it be so ?

Thanks Again,
Waiting for a response,
Lidor Pergament.

My Previous Post (unanswered yet)

"Hello,

After a week of Atlas Partial Rendering integration experiments with my team's WebApplication,
I would like to note out a few bugs and problematic issues.
(The main effort is on replacing our existing complex Client-Server MVC model and Client-Server Context-Sensitive UI model with simple server-side models, using Partial Rendering)

1. Dynamically registered / Static Javascript which contains "&&" operators or<!-- --> Xml comment tags, Larger Than, Smaller Than<> operators causes the Partial Rendering to fail (without any notification).
I assume this is because the partial rendering response is returned as an XML document and these characters are special Xml entities, which cause the Xml parser to treat them specially.
Maybe you could wrap all the Dynamically registered script (Page.ClientScript.RegisterXXXScript) with aCDATA element like with the content returned from the Update Panels ?

2. The previous issue also occurs when trying to render a <style href= type=stylesheet /> or <?XML Import=...> element dynamically.

2. Javascript syntax errors also cause the Partial Rendering to fail without any notification.
I noticed the bug when i accidently rendered anIF statement without a code block and curly brackets.

3. The DHTML event ondocumentready and similar document/body level events aren't fired when using partial rendering. This causes some issues with Controls that depend on these events to initialize.

4. Calling Update() on an UpdatePanel manually works only before the OnLoadComplete event.
Calling Update during the OnLoadComplete raises an Exception but strangely calling Update() from a later event, such as OnPreRender doesn't raise an Exception at all.

5. Is it possible to Create and Register UpdatePanels dynamically from Code-Behind? i tried to use ScriptManager.RegisterUpdatePanel but strangely this caused the partial rendering to fail.

6. The HttpContext.Current.Request isn't accesible during Partial Rendering.

Thanks,

Lidor Pergament."

>>Dynamically rendered script which returns to the client Atlas >>framework after performing a partial update isn't evaluated.
>>The simplest case could be a javascriptalert(msg)not being called if >>rendered dynamically usingPage.ClientScript.RegisterClientScript>(...).

which browser are u using? This trouble was with firefox but not with IE and also, it has been resolved with april CTP.


Actually, I'm using Internet Explorer.
I'll check the April CTP.

Regarding the Dynamically registerd javascript i noticed, today, in the Atlas.js script file that dynamically registered scriptsare treated, BUT the XPath used to search for script elements in the response xml is

"/rendering/script/[@.type='text/javascript']"

meaning if i had a script registered with out the type attribute in the script element, <script> code... </script> it would be ignored and wouldn't be evaluated.

I replaced all my script elements to match <script type='text/javascript'> and surpringly the scripts seemed to work... wooof what a relieve.

Was this resolved in the April CTP ?

Lidor.


i always put type attribute in script tag. I dont think this was the problem which was solved in april ctp. I thought its some thing different. Anyways.. Its good that u have come out of trouble.
I definitely agree that there is some problem with Javascript an UpdatePanels with partial rendering. Refer to http://forums.asp.net/thread/1271593.aspx.

I've also seen that partial rendering stopped working when you include certain javascript source files. In the following code sample:

<%@. Page Language="C#" AutoEventWireup="true" CodeFile="Default4.aspx.cs" Inherits="Default4" %><%@. Register Assembly="AtlasControlToolkit" Namespace="AtlasControlToolkit" TagPrefix="atlasToolkit" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" ><head runat="server"> <title>Geo-Spacial Asset Management</title> <link href="css/StyleSheet.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" type="text/css" href="css/DragNDropMasterPanel.css"> <link href="css/submodal.css" rel="stylesheet" type="text/css" /> <link href="http://dev.virtualearth.net/standard/v2/MapControl.css" type="text/css" rel="stylesheet" /> <style type="text/css" media="screen"><!-- .Compass { width: 54px; height: 54px; background: url(images/compass.gif); margin: 0px; cursor: pointer; } .ZoomBar { position: relative; background: url(images/bar.gif); width: 103px; height: 20px; margin: 2px; overflow: hidden; } .ZoomBar_slider { position: absolute; background: url(images/slider.gif); width: 7px; height: 20px; overflow: hidden; display: block; } .Dashboard { position:absolute; border:1px solid #cbcbcb; background-color:black; filter:alpha(opacity:90); opacity:0.9; z-index:100; padding:2px; overflow:visible; font-family:Verdana,sans-serif; font-size:7.5pt; } --> </style> <![if !IE]><script src="http://local.live.com/JS/AtlasCompat.js"></script><![endif]> <script src="scripts/submodalsource.js" type="text/javascript"></script></head><body> <form id="form1" runat="server"> <atlas:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true"> <ErrorTemplate> <h1>Error</h1> </ErrorTemplate> </atlas:ScriptManager> <a onclick="AddLocation();">AddNew</a> <a onclick="OnFinishAddLocation(null);">Refresh</a> <atlas:UpdatePanel ID="pnl0" runat="server" Mode="conditional" > <ContentTemplate> <asp:Button ID="btnRefresh" runat="Server" OnClick="OnGridRefresh" Text="refresh" style="width:0px;height:0px"/> </ContentTemplate> </atlas:UpdatePanel> <atlas:UpdatePanel ID="pnl" runat="server" > <ContentTemplate> <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" DataSourceID="SqlDataSource1" DataKeyNames="AssetLocationID" > <Columns> <asp:TemplateField> <ItemTemplate> <asp:Panel CssClass="popupMenu" ID="PopupMenu" runat="server"> <div style="border:1px outset white">  <a href="#" onclick='EditLocation(<%# Eval("AssetLocationID")%>);'>Edit</a>  <br />  <asp:LinkButton ID="LinkButton2" runat="server" CommandName="Delete" Text="Delete"></asp:LinkButton>  </div> </asp:Panel> <asp:Panel ID="Panel9" runat="server" Width="100%"> <table width="100%"> <tr> <td ><asp:Label Font-Bold="true" ID="Label1" runat="server" Text='<%# Bind("LocationRegion")%>'></asp:Label></td> </tr> </table> </asp:Panel> <atlasToolkit:HoverMenuExtender ID="hme2" runat="Server"> <atlasToolkit:HoverMenuProperties HoverCssClass="popupHover" PopupControlID="PopupMenu" PopupPosition="right" TargetControlID="Panel9" PopDelay="25"/> </atlasToolkit:HoverMenuExtender> </ItemTemplate> </asp:TemplateField> </Columns> </asp:GridView> <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:assetsConnectionString%>" DeleteCommand="DELETE FROM TBL_LOCATION WHERE (AssetLocationID = @.AssetLocationID)" SelectCommand="SELECT * FROM TBL_LOCATION" SelectCommandType="Text"> <DeleteParameters> <asp:Parameter Name="AssetLocationID" /> </DeleteParameters> </asp:SqlDataSource> </ContentTemplate> <Triggers> <atlas:ControlEventTrigger ControlID="btnRefresh" EventName="Click" /> </Triggers> </atlas:UpdatePanel>  <input id="Text1" type="text" /> </form> <script type="text/javascript">function EditLocation(locId){ var url = "dialogs/editlocations.aspx?LocationID=" + locId + "&Action=edit"; showPopWin(url, 400, 250, OnFinishAddLocation);} function OnFinishAddLocation(result){ form1.btnRefresh.click();}function AddLocation(){ var center_latitude = "-110.0902902"; var center_longitude = "78.0891821"; var zoom_level = "12"; var url = "dialogs/editlocations.aspx?LocationID=-1&Action=insert&Latitude=" + center_latitude + "&Longitude=" + center_longitude + "&ZoomLevel=" + zoom_level; showPopWin(url, 400, 200, OnFinishAddLocation);} </script> </body></html>
Partial rendering doesn not work- the gridview is not updated when you click the btnRefresh button. IF I remove
 <![if !IE]><script src="http://local.live.com/JS/AtlasCompat.js"></script><![endif]
It will start working. If I re-insert the src, it stops. I'm not sure if the developers read these two forums often enough. The developers in the Tookkit forum is much more active, it seems. I started a web site, and now I've halted development because of these unknown issues.
If you're doing a straight Atlas example, all works well, but once you start adding additional scripts, and integrate with other stuff,
there seems to be some issues--side effects--that break things.

Just a note-I'm using the April CTP. I know it is still a work in progress, but without feedback from the devs,
I'm not sure if it will be fixed at all.


One more thing to note, if I inserted an UpdateProgress, I can see it execute each time, but for some reason , the gridview doesn't update when that source is included.

include that script , which is causing the error and call UpdatePanel.Update() in server side code to see if it helps you.

BTW, what kinda website u r working on? Just curious. I am also working on a web site and had a few problems wid atlas as well.


HiShahzadAhmed, thanks. I'm integrating the Atlas UI and MS Virtual Earth control to create an app that manages/monitor/control spacially dispersed assets in an organization with multiple sites. My expertise is in web based visualization and control of plant assets (accross a wide range of industries), and I thought VE & Atlas would provide some "new" and dynamic ways to interact with the assets--over and beyond what I've used in the past. The intent is to create a prototype and see how it goes...These types of sites are always not exposed to the web, because of the sensitive information it contains (to the organization), so it is not something I can "show off" when I'm doneSad [:(]

What's your site about, if you don't mind me asking?

Just tried UpdatePanel's Update() method, but with no change in the results.

hmm... can u make sure if its postingback to the server , using debugging.

I have developing a Team managment system which features hour tracking , task list and some other stuff. It s currently in beta testing mode. I will show it to u, when it gets live. We have used atlas and library at script.aculo.us to cope with the challenges. Script aculo provides some good drag drop funcationality, without writting much of the code.


It is posting back. If I set a break point, I can break to the DataBind() call just fine.

its strange really. Cant say any thing about it.


Ok, from various comments in this and other posts, it seems that if you have characters that are not xml friendly (or has special meaning to xml), then these can stop the xml parsing in the page--which stops rendering to the client. Also, searching on the web, it seems if you have script blocks, if you put them into javascript source files and call these through script includes with the src property set to the path, it will escape these kinds of characters. I've tried encapsulating the code blocks in CDATA sections and this doesn't seem to work. The include worked.