9.11.09
Using FindControl with a MasterPage in ASP.NET & C#
http://www.aspnettutorials.com/tutorials/controls/findcontrol-csharp.aspx
4.11.09
Jquery Videos
http://plugins.jquery.com/
http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/
http://sorgalla.com/jcarousel/
http://www.smashingmagazine.com/2009/01/15/45-new-jquery-techniques-for-a-good-user-experience/
http://www.beansoftware.com/ASP.NET-Tutorials/Using-jQuery-ASP.NET.aspx
http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/
http://sorgalla.com/jcarousel/
http://www.smashingmagazine.com/2009/01/15/45-new-jquery-techniques-for-a-good-user-experience/
http://www.beansoftware.com/ASP.NET-Tutorials/Using-jQuery-ASP.NET.aspx
29.10.09
Rad Rotataor with client side
http://www.telerik.com/community/forums/aspnet-ajax/rotator/client-side-control-of-rad-rotator.aspx
http://www.telerik.com/help/aspnet-ajax/rotator-clientside-api.html
http://www.telerik.com/help/aspnet-ajax/rotator-clientside-api.html
27.10.09
starting Jquery
http://www.dotnetcurry.com/ShowArticle.aspx?ID=231&AspxAutoDetectCookieSupport=1
http://www.mkyong.com/jquery/page-loading-effects-with-jquery/
http://www.mkyong.com/jquery/page-loading-effects-with-jquery/
22.10.09
sys.webforms.pagerequestmanagerservererrorexception
sys.webforms.pagerequestmanagerservererrorexception ERROR
ok, try another simplest way:
asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="false"
and also setting the EnableEventValidation="false"
======================================================================================
You may want to try setting ValidateRequest="false" in the Page declaration. It worked for me.
ok, try another simplest way:
asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="false"
and also setting the EnableEventValidation="false"
======================================================================================
You may want to try setting ValidateRequest="false" in the Page declaration. It worked for me.
20.10.09
radajax
consider a RadAjaxPanel with id = rap1, we need to add
rap1.ResponseScripts.Add(”alert(’Email Sent Successfully!’);”);
rap1.ResponseScripts.Add(”javascript: self.close();”);
rap1.ResponseScripts.Add(”alert(’Email Sent Successfully!’);”);
rap1.ResponseScripts.Add(”javascript: self.close();”);
radRotator
OnItemClick="RadRotator1_ItemClick">
========================================
CustomIDProperty=' XPath("id") ' Style="width: 300px; height: 200px;" />
===========================================
using Telerik.Web.UI;
public void RadRotator1_ItemClick(object sender, RadRotatorEventArgs e)
{
Image img = e.Item.FindControl("Image1") as Image;
string id = img.Attributes["CustomIDProperty"];
}
========================================
===========================================
using Telerik.Web.UI;
public void RadRotator1_ItemClick(object sender, RadRotatorEventArgs e)
{
Image img = e.Item.FindControl("Image1") as Image;
string id = img.Attributes["CustomIDProperty"];
}
Subscribe to:
Posts (Atom)