Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~223 People Reached
Favorite Forums
Favorite Tags
Member Avatar for qwedster

Folks! What is the difference between PostBack and IsCallback ( !IsPostBack and if(!IsCallback)) Like in the following Code Snippet: [CODE] public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { } if(!IsCallback) { } } }[/CODE] As far as I know, when I …

0
54
Member Avatar for qwedster

Folks! The following is a "Hello World" kind of code for ViewState. I just want to know how to retain the ViewState 1) while Page Refresh when using UpdatePanel and also 2) While I reverting back to the page after round trip when using UpdatePanel? Code Snippet: // Default.aspx [code=asp.net]<%@ …

0
56
Member Avatar for qwedster

Guys! I got 2 `ajaxToolkit:sliderExtenders` "SliderExtenderVertical" and "SliderHorizontal" targeting 2 `asp:TextBoxes` "SliderVertical" (with definition for "SliderVertical_TextChanged") and "SliderHorizontal" (with definition for "SliderHorizontal_TextChanged") respectively. However, when "SliderVertical" is slided, both "SliderVertical_TextChanged" and "SliderHorizontal_TextChanged" events are triggered! How to prevent "SliderHorizontal_TextChanged" event from being fired when "SliderVertical" is slided? As a matter …

0
50
Member Avatar for qwedster

Hi! I am using Zedgraph in my ASP.NET application. I get a duplicate legend in my graph. How to remove? Please help! Here's my code: //Default.aspx.cs [code=c#]using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Drawing; using ZedGraph; using System.Configuration; using System.Data; // using System.Data.SQLite; public …

0
63