You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(33) |
Dec
(28) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(198) |
Feb
(323) |
Mar
(143) |
Apr
(20) |
May
(13) |
Jun
(5) |
Jul
|
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Steven R. <ste...@gm...> - 2006-03-12 00:16:19
|
Hello, When I step through OnPreRender in Manager.cs the _value object is successfully set with the return value of my server side anthem method and the _error variable is null, however when I evaluate the result on the client side the result.value is null and the result.error is "NORESPONSE". Why would this be happening? Is there a way to debug what goes on between the server side code and the client side code? Steve |
From: Manu Temmerman-U. <man...@gm...> - 2006-03-11 10:57:53
|
Maybe you should use fiddler to investigate the traffic...? On 3/11/06, Jon Aseltine <Jon...@ti...> wrote: > > You can set it in the codebehind. The value sticks if it is a > DropDownList. It doesn't if it is a TextBox. With my DropDownLists I > initialize this value once, and it continues to work. For TextBoxes, I ha= ve > to keep setting it on every Page_Load. For DropDownList it must be gettin= g > stored somewhere. Unless I am totally hallucinating. > > > Jon > > Manu Temmerman-Uyttenbroeck wrote: > > Hmm ok sry misunderstanding. The AutoCallBack property isn't stored in > viewstate, so you should set it once at design time to have it remember t= he > value, right? But you want to be able to switch the value on and off? Hmm= I > don't really get the picture I think... > > On 3/10/06, Manu Temmerman-Uyttenbroeck < > man...@gm...> wrote: > > > > It has to be something else I think.... If you look at the dropdownlist > > which also has an autocallback property. There it's also not stored in > > viewstate, and the dropdown keeps working after doing callback, right? > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > It works, but you have to reset it on every Page_Load. This is better > > > than it was for me (at least I have some flexibility now), but still = a pain. > > > I have no idea why the attribute is not being saved in the viewstate.= I will > > > check it out further tonight. I wish Jason would weigh in on this -- = he > > > would know what is going on. > > > > > > > > > Jon > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > I just received write access to cvs. So I would like to know if the > > > change you made is working? If it's bug free, then I could check it i= n... > > > > > > Manu. > > > > > > > > > On 3/10/06, Manu Temmerman-Uyttenbroeck <manu.temmermanuyttenbroeck@g= mail.com> > > > wrote: > > > > > > > > Hmmm but in your last mail you wrote that you *thought* it was fixe= d > > > > no? > > > > > > > > > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > > > > > I'm sure someone has mentioned it. It doesn't make much sense not > > > > > to have the capability. And given that it took me about 90 second= s to fix > > > > > the code, I'm not sure why it hasn't been done already. :) > > > > > > > > > > > > > > > Jon > > > > > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > > > > > Thx for the code... > > > > > I think we already had a discussion about this on the forum or > > > > > mailinglist. > > > > > I'll look it up... moment... > > > > > ok so somebody created a 'bug' about this on sourceforge: https:= //sourceforge.net/tracker/?func=3Ddetail&atid=3D782464&aid=3D1446640&group_= id=3D151897 > > > > > > > > > > > > > > > I couldn't find anything else about it.... But I really think > > > > > somewhere we already were talking about this :) > > > > > > > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > > > > > > > Sure. Added this to the class: > > > > > > > > > > > > private bool _autoCallBack; > > > > > > > > > > > > [DefaultValue(false)] > > > > > > public bool AutoCallBack > > > > > > { > > > > > > get { return _autoCallBack; } > > > > > > set { _autoCallBack =3D value; } > > > > > > } > > > > > > > > > > > > Then wrapped AddScriptAttribute: > > > > > > if (AutoCallBack) > > > > > > { > > > > > > Anthem.Manager.AddScriptAttribute( > > > > > > this, > > > > > > "onchange", > > > > > > string.Format( > > > > > > "AnthemTextBox_TextChanged(this, '{0}', > > > > > > true, true);", > > > > > > UniqueID > > > > > > ) > > > > > > ); > > > > > > } > > > > > > > > > > > > That's it. Works great. It's strange that this functionality > > > > > > exists for DropDownList and other controls, but not for TextBox= . > > > > > > > > > > > > Jon > > > > > > > > > > > > > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > > > > > > > What did you add to the snapshot? A way to disable AutoCallBack > > > > > > for the textbox? > > > > > > If the change is not too big, then maybe you could share it wit= h > > > > > > all of us? > > > > > > > > > > > > Manu. > > > > > > > > > > > > > > > > > > On 3/9/06, Jon Aseltine <jo...@ti... > wrote: > > > > > > > > > > > > > > I added this to the snapshot and it works fine. I'll make a > > > > > > > patch if > > > > > > > anyone wants it (you'll have to tell me how, I am unix guy). > > > > > > > > > > > > > > Jon > > > > > > > > > > > > > > Jon Aseltine wrote: > > > > > > > > Hi, > > > > > > > > > > > > > > > > Anyone know why TextBox does not have the AutoCallBack > > > > > > > attribute > > > > > > > > available? I'd like to turn it off. > > > > > > > > > > > > > > > > Jon > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > Jonathan Aseltine > > > > > > > Software Engineer > > > > > > > TicketNetwork.com > > > > > > > 27 Terrace Drive > > > > > > > Vernon, CT 06066 > > > > > > > Ph: 860.870.3400 x278 > > > > > > > Fax: 860.870.8744 > > > > > > > Email: jo...@ti... <mailto: jo...@ti...> > > > > > > > > > > > > > > *TicketNetwork=99 > > > > > > > *//Think outside the box office. > > > > > > > //www.TicketNetwork.com <http://www.TicketNetwork.com<http://= www.ticketnetwork.com/> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > > This SF.Net email is sponsored by xPML, a groundbreaking > > > > > > > scripting language > > > > > > > that extends applications into web and mobile media. Attend > > > > > > > the live webcast > > > > > > > and join the prime developer group breaking into this new > > > > > > > coding territory! > > > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D= 241720&dat=3D121642 > > > > > > > > > > > > > > _______________________________________________ > > > > > > > anthem-dot-net-users mailing list > > > > > > > ant...@li... > > > > > > > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-u= sers > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > > > Jonathan Aseltine > > > > > > Software Engineer > > > > > > TicketNetwork.com > > > > > > 27 Terrace Drive > > > > > > Vernon, CT 06066 > > > > > > Ph: 860.870.3400 x278 > > > > > > Fax: 860.870.8744 > > > > > > Email: Jon...@Ti... <jon...@Ti...= > > > > > > > > > > > > > *TicketNetwork=99 > > > > > > **Think outside the box office. > > > > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > Jonathan Aseltine > > > > > Software Engineer > > > > > TicketNetwork.com > > > > > 27 Terrace Drive > > > > > Vernon, CT 06066 > > > > > Ph: 860.870.3400 x278 > > > > > Fax: 860.870.8744 > > > > > Email: Jon...@Ti... <jon...@Ti...> > > > > > > > > > > *TicketNetwork=99 > > > > > **Think outside the box office. > > > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > > > > > > > > > > > > > -- > > > Jonathan Aseltine > > > Software Engineer > > > TicketNetwork.com > > > 27 Terrace Drive > > > Vernon, CT 06066 > > > Ph: 860.870.3400 x278 > > > Fax: 860.870.8744 > > > Email: Jon...@Ti... <jon...@Ti...> > > > > > > *TicketNetwork=99 > > > **Think outside the box office. > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... <jon...@Ti...> > > *TicketNetwork=99 > **Think outside the box office. > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > |
From: Jon A. <Jon...@Ti...> - 2006-03-11 10:15:32
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> You can set it in the codebehind. The value sticks if it is a DropDownList. It doesn't if it is a TextBox. With my DropDownLists I initialize this value once, and it continues to work. For TextBoxes, I have to keep setting it on every Page_Load. For DropDownList it must be getting stored somewhere. Unless I am totally hallucinating.<br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="mid...@ma..." type="cite">Hmm ok sry misunderstanding. The AutoCallBack property isn't stored in viewstate, so you should set it once at design time to have it remember the value, right? But you want to be able to switch the value on and off? Hmm I don't really get the picture I think... <br> <br> <div><span class="gmail_quote">On 3/10/06, <b class="gmail_sendername">Manu Temmerman-Uyttenbroeck</b> <<a href="mailto:man...@gm...">man...@gm...</a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;"><span class="q">It has to be something else I think.... If you look at the dropdownlist which also has an autocallback property. There it's also not stored in viewstate, and the dropdown keeps working after doing callback, right? <br> <br> </span></div> <div style="direction: ltr;"><span class="e" id="q_109e5d4e08c399b8_1"> <div><span class="gmail_quote">On 3/10/06, <b class="gmail_sendername">Jon Aseltine</b> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti... </a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;">It works, but you have to reset it on every Page_Load. This is better than it was for me (at least I have some flexibility now), but still a pain. I have no idea why the attribute is not being saved in the viewstate. I will check it out further tonight. I wish Jason would weigh in on this -- he would know what is going on. </div> <div style="direction: ltr;"><span><br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="http://mid...@ma..." type="cite"> <div>I just received write access to cvs. So I would like to know if the change you made is working? If it's bug free, then I could check it in...</div> <div> </div> <div>Manu.<br> <br> </div> <div><span class="gmail_quote">On 3/10/06, <b class="gmail_sendername">Manu Temmerman-Uyttenbroeck</b> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:man...@gm..." target="_blank"> man...@gm...</a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;">Hmmm but in your last mail you wrote that you *thought* it was fixed no?</div> <div style="direction: ltr;"><span><br> <br> <div><span class="gmail_quote">On 3/10/06, <b class="gmail_sendername">Jon Aseltine</b> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti... </a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;">I'm sure someone has mentioned it. It doesn't make much sense not to have the capability. And given that it took me about 90 seconds to fix the code, I'm not sure why it hasn't been done already. :) </div> <div style="direction: ltr;"><span><br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="http://mid...@ma..." type="cite"> <div>Thx for the code...</div> <div>I think we already had a discussion about this on the forum or mailinglist.</div> <div>I'll look it up... moment...</div> <div>ok so somebody created a 'bug' about this on sourceforge: <a onclick="return top.js.OpenExtLink(window,event,this)" href="https://sourceforge.net/tracker/?func=detail&atid=782464&aid=1446640&group_id=151897" target="_blank"> https://sourceforge.net/tracker/?func=detail&atid=782464&aid=1446640&group_id=151897 </a><br> </div> <div>I couldn't find anything else about it.... But I really think somewhere we already were talking about this :)<br> </div> <div><span class="gmail_quote">On 3/10/06, <b class="gmail_sendername">Jon Aseltine</b> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti... </a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;">Sure. Added this to the class:<br> <br> private bool _autoCallBack;<br> <br> [DefaultValue(false)]<br> public bool AutoCallBack<br> {<br> get { return _autoCallBack; } <br> set { _autoCallBack = value; }<br> }<br> <br> Then wrapped AddScriptAttribute:<br> if (AutoCallBack)<br> {<br> Anthem.Manager.AddScriptAttribute(<br> this, <br> "onchange",<br> string.Format(<br> "AnthemTextBox_TextChanged(this, '{0}', true, true);",<br> UniqueID<br> ) <br> );<br> }<br> <br> That's it. Works great. It's strange that this functionality exists for DropDownList and other controls, but not for TextBox.<br> <br> Jon</div> <div style="direction: ltr;"><span><br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="http://mid...@ma..." type="cite"> <div>What did you add to the snapshot? A way to disable AutoCallBack for the textbox?</div> <div>If the change is not too big, then maybe you could share it with all of us?</div> <div> </div> <div>Manu.<br> <br> </div> <div><span class="gmail_quote">On 3/9/06, <b class="gmail_sendername">Jon Aseltine</b> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank">jo...@ti... </a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">I added this to the snapshot and it works fine. I'll make a patch if<br> anyone wants it (you'll have to tell me how, I am unix guy). <br> <br> Jon<br> <br> Jon Aseltine wrote:<br> > Hi,<br> ><br> > Anyone know why TextBox does not have the AutoCallBack attribute<br> > available? I'd like to turn it off.<br> ><br> > Jon<br> <br> <br> --<br> Jonathan Aseltine <br> Software Engineer<br> TicketNetwork.com<br> 27 Terrace Drive<br> Vernon, CT 06066<br> Ph: 860.870.3400 x278<br> Fax: 860.870.8744<br> Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a>><br> <br> *TicketNetwork™<br> *//Think outside the box office. <br> //www.TicketNetwork.com <<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">http://www.TicketNetwork.com</a>><br> <br> <br> <br> <br> <br> ------------------------------------------------------- <br> This SF.Net email is sponsored by xPML, a groundbreaking scripting language<br> that extends applications into web and mobile media. Attend the live webcast<br> and join the prime developer group breaking into this new coding territory! <br> <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642" target="_blank">http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 </a><br> _______________________________________________ <br> anthem-dot-net-users mailing list<br> <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:ant...@li..." target="_blank">ant...@li...</a><br> <a onclick="return top.js.OpenExtLink(window,event,this)" href="https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users" target="_blank">https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users </a><br> </blockquote> </div> <br> </blockquote> <br> <br> </span></div> <div style="direction: ltr;"> <div>-- </div> <div style="direction: ltr;"><span><br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com <br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span> </font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font></span></div> <div style="direction: ltr;"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jon...@Ti..." target="_blank">Jon...@Ti...</a><br> <br> </span></font></div> <div style="direction: ltr;"><span><b><font face="Arial" size="2"><span style="font-weight: bold; font-size: 10pt; font-family: Arial;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font></span></div> </div> </blockquote> </div> <br> </blockquote> <br> <br> <div>-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jon...@Ti..." target="_blank"> Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-weight: bold; font-size: 10pt; font-family: Arial;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font></div> </span></div> </blockquote> </div> <br> </span></div> </blockquote> </div> <br> </blockquote> <br> <br> <div>-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jon...@Ti..." target="_blank"> Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-weight: bold; font-size: 10pt; font-family: Arial;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font></div> </span></div> </blockquote> </div> <br> </span></div> </blockquote> </div> <br> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Jon A. <Jon...@Ti...> - 2006-03-11 10:11:51
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> Tried it. The FireEvent call doesn't work for TextBox. Perhaps it needs to be massaged a bit, but there I am out of my league.<br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="mid...@ma..." type="cite"> <div>Do you have exactly the same as what is in the dropdown?</div> <div>This in in dropdown:</div> <font color="#0000ff" size="2"> <p>private</p> </font><font size="2"> </font><font color="#0000ff" size="2">bool</font><font size="2"> _autoCallBack; </font><font color="#0000ff" size="2">public</font><font size="2"> </font><font color="#0000ff" size="2">bool</font><font size="2"> AutoCallBack <p>{</p> </font><font color="#0000ff" size="2">get</font><font size="2"> { </font><font color="#0000ff" size="2">return</font><font size="2"> _autoCallBack; } </font><font color="#0000ff" size="2">set</font><font size="2"> { _autoCallBack = </font><font color="#0000ff" size="2">value</font><font size="2">; } <p>}</p> </font><font color="#0000ff" size="2">protected</font><font size="2"> </font><font color="#0000ff" size="2">override</font><font size="2"> </font><font color="#0000ff" size="2">void</font><font size="2"> AddAttributesToRender( </font><font color="#008080" size="2">HtmlTextWriter</font><font size="2"> writer) <p>{</p> </font><font color="#0000ff" size="2">if</font><font size="2"> (AutoCallBack) <p>{</p> <p>Anthem.</p> </font><font color="#008080" size="2">Manager</font><font size="2">.AddScriptAttribute( </font><font color="#0000ff" size="2">this</font><font size="2">, </font><font color="#800000" size="2">"onchange"</font><font size="2">, </font><font color="#0000ff" size="2">string</font><font size="2">.Format( </font><font color="#800000" size="2">"Anthem_FireEvent('{0}','',function(){{}},null,true,true);return false"</font><font size="2">, <p>ClientID</p> <p>)</p> <p>);</p> <p>}</p> </font><font color="#0000ff" size="2">base</font><font size="2">.AddAttributesToRender(writer); <p>}</p> </font> <div><br> Notice that there is NO default value. You had one in your pasted code.</div> <div>And the method call to addscriptattribute. Do you have it also inside the <font size="2">AddAttributesToRender method? Are you calling the base.AddAttributesToRender?</font><br> </div> <div><span class="gmail_quote">On 3/11/06, <b class="gmail_sendername">Manu Temmerman-Uyttenbroeck</b> <<a href="mailto:man...@gm...">man...@gm...</a>> wrote:</span></div> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;">I'm afraid we'll have to figure it out alone :) He's too busy... Would you mind making a topic about this on the forum? Maybe you could getmore help there...</div> </blockquote> <div> </div> <div>Manu.</div> <div><br> </div> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;"> <div style="direction: ltr;"><span class="e" id="q_109e875cb2b1d9cb_1"> <div><span class="gmail_quote">On 3/11/06, <b class="gmail_sendername">Jon Aseltine</b> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank">jo...@ti... </a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">Ok. Try this experiment. Set AutoCallBack="false" for an<br> anthem:DropDownList in the .aspx file. Set it true once in the <br> codebehind when the control is initialized. It will continue to do<br> AutoCallBack. That's the behavior I expect. TextBox should behave the<br> same way. So I don't know what extra magic is going on that makes<br> DropDownList work like that. Wish Jason was around. <br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote:<br> > Hmm ok sry misunderstanding. The AutoCallBack property isn't stored in<br> > viewstate, so you should set it once at design time to have it<br> > remember the value, right? But you want to be able to switch the value <br> > on and off? Hmm I don't really get the picture I think...<br> ><br> > On 3/10/06, *Manu Temmerman-Uyttenbroeck*<br> > <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:man...@gm..." target="_blank"> man...@gm... </a><br> > <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:man...@gm..." target="_blank">man...@gm... </a>>> wrote:<br> ><br> > It has to be something else I think.... If you look at the<br> > dropdownlist which also has an autocallback property. There it's <br> > also not stored in viewstate, and the dropdown keeps working after <br> > doing callback, right?<br> ><br> > On 3/10/06, *Jon Aseltine* <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti... </a><br> > <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti...</a>>> wrote:<br> ><br> > It works, but you have to reset it on every Page_Load. This is <br> > better than it was for me (at least I have some flexibility <br> > now), but still a pain. I have no idea why the attribute is<br> > not being saved in the viewstate. I will check it out further <br> > tonight. I wish Jason would weigh in on this -- he would know <br> > what is going on.<br> ><br> ><br> > Jon<br> ><br> > Manu Temmerman-Uyttenbroeck wrote:<br> >> I just received write access to cvs. So I would like to know <br> >> if the change you made is working? If it's bug free, then I <br> >> could check it in...<br> >><br> >> Manu.<br> >><br> >><br> >> On 3/10/06, *Manu Temmerman-Uyttenbroeck* < <br> >> <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:man...@gm..." target="_blank">man...@gm...</a><br> >> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:man...@gm..." target="_blank"> man...@gm...</a>>> wrote:<br> >><br> >> Hmmm but in your last mail you wrote that you *thought* <br> >> it was fixed no?<br> >><br> >><br> >> On 3/10/06, *Jon Aseltine* < <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti...</a><br> >> <mailto: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank"> Jon...@ti...</a>>> wrote:<br> >><br> >> I'm sure someone has mentioned it. It doesn't make<br> >> much sense not to have the capability. And given that <br> >> it took me about 90 seconds to fix the code, I'm not<br> >> sure why it hasn't been done already. :)<br> >><br> >><br> >> Jon<br> >><br> >> Manu Temmerman-Uyttenbroeck wrote: <br> >>> Thx for the code...<br> >>> I think we already had a discussion about this on<br> >>> the forum or mailinglist. <br> >>> I'll look it up... moment... <br> >>> ok so somebody created a 'bug' about this on<br> >>> sourceforge:<br> >>> <a onclick="return top.js.OpenExtLink(window,event,this)" href="https://sourceforge.net/tracker/?func=detail&atid=782464&aid=1446640&group_id=151897" target="_blank"> https://sourceforge.net/tracker/?func=detail&atid=782464&aid=1446640&group_id=151897</a><br> >>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="https://sourceforge.net/tracker/?func=detail&atid=782464&aid=1446640&group_id=151897" target="_blank"> https://sourceforge.net/tracker/?func=detail&atid=782464&aid=1446640&group_id=151897</a>><br> >>><br> >>> I couldn't find anything else about it.... But I<br> >>> really think somewhere we already were talking about <br> >>> this :)<br> >>><br> >>> On 3/10/06, *Jon Aseltine*<br> >>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank"> Jon...@ti... </a><br> >>> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@ti..." target="_blank">Jon...@ti...</a> >> wrote:<br> >>><br> >>> Sure. Added this to the class: <br> >>><br> >>> private bool _autoCallBack;<br> >>><br> >>> [DefaultValue(false)] <br> >>> public bool AutoCallBack <br> >>> {<br> >>> get { return _autoCallBack; }<br> >>> set { _autoCallBack = value; } <br> >>> } <br> >>><br> >>> Then wrapped AddScriptAttribute:<br> >>> if (AutoCallBack)<br> >>> { <br> >>> Anthem.Manager.AddScriptAttribute(<br> >>> this,<br> >>> "onchange", <br> >>> string.Format(<br> >>><br> >>> "AnthemTextBox_TextChanged(this, '{0}', true,<br> >>> true);", <br> >>> UniqueID <br> >>> )<br> >>> );<br> >>> } <br> >>><br> >>> That's it. Works great. It's strange that this <br> >>> functionality exists for DropDownList and other<br> >>> controls, but not for TextBox. <br> >>><br> >>> Jon<br> >>> <br> >>><br> >>> Manu Temmerman-Uyttenbroeck wrote:<br> >>>> What did you add to the snapshot? A way to <br> >>>> disable AutoCallBack for the textbox? <br> >>>> If the change is not too big, then maybe you<br> >>>> could share it with all of us? <br> >>>><br> >>>> Manu. <br> >>>><br> >>>><br> >>>> On 3/9/06, *Jon Aseltine*<br> >>>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a><br> >>>> <mailto: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank">jo...@ti...</a>>> wrote: <br> >>>><br> >>>> I added this to the snapshot and it works<br> >>>> fine. I'll make a patch if <br> >>>> anyone wants it (you'll have to tell me <br> >>>> how, I am unix guy).<br> >>>><br> >>>> Jon<br> >>>><br> >>>> Jon Aseltine wrote:<br> >>>> > Hi,<br> >>>> ><br> >>>> > Anyone know why TextBox does not have the <br> >>>> AutoCallBack attribute <br> >>>> > available? I'd like to turn it off.<br> >>>> ><br> >>>> > Jon <br> >>>><br> >>>> <br> >>>> --<br> >>>> Jonathan Aseltine<br> >>>> Software Engineer<br> >>>> TicketNetwork.com <br> >>>> 27 Terrace Drive<br> >>>> Vernon, CT 06066<br> >>>> Ph: 860.870.3400 x278<br> >>>> Fax: 860.870.8744<br> >>>> Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank">jo...@ti...</a><br> >>>> <mailto: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a>> <mailto:<br> >>>> <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a><br> >>>> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a>>> <br> >>>><br> >>>> *TicketNetwork™<br> >>>> *//Think outside the box office.<br> >>>> //www.TicketNetwork.com <br> >>>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">http://www.TicketNetwork.com</a><br> >>>> < <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">http://www.ticketnetwork.com/ </a>>><br> >>>><br> >>>><br> >>>><br> >>>> <br> >>>><br> >>>> -------------------------------------------------------<br> >>>> <br> >>>> This SF.Net email is sponsored by xPML, a <br> >>>> groundbreaking scripting language<br> >>>> that extends applications into web and <br> >>>> mobile media. Attend the live webcast <br> >>>> and join the prime developer group breaking<br> >>>> into this new coding territory! <br> >>>> <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642" target="_blank"> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 </a><br> >>>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642" target="_blank"> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 </a>><br> >>>> _______________________________________________<br> >>>><br> >>>> anthem-dot-net-users mailing list <br> >>>> <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:ant...@li..." target="_blank">ant...@li...</a> <br> >>>> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:ant...@li..." target="_blank"> ant...@li... </a>><br> >>>> <a onclick="return top.js.OpenExtLink(window,event,this)" href="https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users" target="_blank">https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users </a><br> >>>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users" target="_blank">https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users </a>><br> >>>> <br> >>>><br> >>><br> >>><br> >>> --<br> >>><br> >>> Jonathan Aseltine<br> >>> Software Engineer <br> >>> TicketNetwork.com<br> >>> 27 Terrace Drive<br> >>> Vernon, CT 06066<br> >>> Ph: 860.870.3400 x278<br> >>> Fax: 860.870.8744<br> >>> Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@Ti..." target="_blank">Jon...@Ti... </a><br> >>> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jon...@Ti..." target="_blank"> jon...@Ti...</a>><br> >>><br> >>> *TicketNetwork™<br> >>> *//Think outside the box office.<br> >>> //www.TicketNetwork.com <br> >>> <<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank"> http://www.ticketnetwork.com/</a>><br> >>><br> >>><br> >><br> >><br> >> --<br> >> Jonathan Aseltine <br> >> Software Engineer<br> >> TicketNetwork.com<br> >> 27 Terrace Drive<br> >> Vernon, CT 06066<br> >> Ph: 860.870.3400 x278<br> >> Fax: 860.870.8744 <br> >> Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@Ti..." target="_blank">Jon...@Ti...</a><br> >> <mailto: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jon...@Ti..." target="_blank"> jon...@Ti...</a>><br> >><br> >> *TicketNetwork™<br> >> *//Think outside the box office. <br> >> //www.TicketNetwork.com <<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank"> http://www.ticketnetwork.com/</a>><br> >><br> >><br> >><br> ><br> ><br> > --<br> > Jonathan Aseltine<br> > Software Engineer<br> > TicketNetwork.com<br> > 27 Terrace Drive <br> > Vernon, CT 06066 <br> > Ph: 860.870.3400 x278<br> > Fax: 860.870.8744<br> > Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:Jon...@Ti..." target="_blank">Jon...@Ti... </a><br> > <mailto: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jon...@Ti..." target="_blank">jon...@Ti...</a>><br> ><br> > *TicketNetwork™ <br> > *//Think outside the box office.<br> > //www.TicketNetwork.com <<a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank"> http://www.ticketnetwork.com/ </a>><br> ><br> ><br> ><br> <br> <br> --<br> Jonathan Aseltine<br> Software Engineer<br> TicketNetwork.com<br> 27 Terrace Drive<br> Vernon, CT 06066<br> Ph: 860.870.3400 x278<br> Fax: 860.870.8744 <br> Email: <a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank"> jo...@ti...</a> <mailto:<a onclick="return top.js.OpenExtLink(window,event,this)" href="mailto:jo...@ti..." target="_blank">jo...@ti...</a>><br> <br> *TicketNetwork™<br> *//Think outside the box office. <br> //www.TicketNetwork.com < <a onclick="return top.js.OpenExtLink(window,event,this)" href="http://www.ticketnetwork.com/" target="_blank">http://www.TicketNetwork.com</a>><br> <br> <br> <br> </blockquote> </div> <br> </span></div> </blockquote> <br> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Manu Temmerman-U. <man...@gm...> - 2006-03-10 20:32:15
|
Hmm ok sry misunderstanding. The AutoCallBack property isn't stored in viewstate, so you should set it once at design time to have it remember the value, right? But you want to be able to switch the value on and off? Hmm I don't really get the picture I think... On 3/10/06, Manu Temmerman-Uyttenbroeck < man...@gm...> wrote: > > It has to be something else I think.... If you look at the dropdownlist > which also has an autocallback property. There it's also not stored in > viewstate, and the dropdown keeps working after doing callback, right? > > On 3/10/06, Jon Aseltine <Jon...@ti...> wrote: > > > > It works, but you have to reset it on every Page_Load. This is better > > than it was for me (at least I have some flexibility now), but still a = pain. > > I have no idea why the attribute is not being saved in the viewstate. I= will > > check it out further tonight. I wish Jason would weigh in on this -- he > > would know what is going on. > > > > > > Jon > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > I just received write access to cvs. So I would like to know if the > > change you made is working? If it's bug free, then I could check it in.= .. > > > > Manu. > > > > > > On 3/10/06, Manu Temmerman-Uyttenbroeck <manu.temmermanuyttenbroeck@gma= il.com> > > wrote: > > > > > > Hmmm but in your last mail you wrote that you *thought* it was fixed > > > no? > > > > > > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > > > I'm sure someone has mentioned it. It doesn't make much sense not t= o > > > > have the capability. And given that it took me about 90 seconds to = fix the > > > > code, I'm not sure why it hasn't been done already. :) > > > > > > > > > > > > Jon > > > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > > > Thx for the code... > > > > I think we already had a discussion about this on the forum or > > > > mailinglist. > > > > I'll look it up... moment... > > > > ok so somebody created a 'bug' about this on sourceforge: https://= sourceforge.net/tracker/?func=3Ddetail&atid=3D782464&aid=3D1446640&group_id= =3D151897 > > > > > > > > > > > > I couldn't find anything else about it.... But I really think > > > > somewhere we already were talking about this :) > > > > > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > > > > > Sure. Added this to the class: > > > > > > > > > > private bool _autoCallBack; > > > > > > > > > > [DefaultValue(false)] > > > > > public bool AutoCallBack > > > > > { > > > > > get { return _autoCallBack; } > > > > > set { _autoCallBack =3D value; } > > > > > } > > > > > > > > > > Then wrapped AddScriptAttribute: > > > > > if (AutoCallBack) > > > > > { > > > > > Anthem.Manager.AddScriptAttribute( > > > > > this, > > > > > "onchange", > > > > > string.Format( > > > > > "AnthemTextBox_TextChanged(this, '{0}', > > > > > true, true);", > > > > > UniqueID > > > > > ) > > > > > ); > > > > > } > > > > > > > > > > That's it. Works great. It's strange that this functionality > > > > > exists for DropDownList and other controls, but not for TextBox. > > > > > > > > > > Jon > > > > > > > > > > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > > > > > What did you add to the snapshot? A way to disable AutoCallBack > > > > > for the textbox? > > > > > If the change is not too big, then maybe you could share it with > > > > > all of us? > > > > > > > > > > Manu. > > > > > > > > > > > > > > > On 3/9/06, Jon Aseltine <jo...@ti... > wrote: > > > > > > > > > > > > I added this to the snapshot and it works fine. I'll make a > > > > > > patch if > > > > > > anyone wants it (you'll have to tell me how, I am unix guy). > > > > > > > > > > > > Jon > > > > > > > > > > > > Jon Aseltine wrote: > > > > > > > Hi, > > > > > > > > > > > > > > Anyone know why TextBox does not have the AutoCallBack > > > > > > attribute > > > > > > > available? I'd like to turn it off. > > > > > > > > > > > > > > Jon > > > > > > > > > > > > > > > > > > -- > > > > > > Jonathan Aseltine > > > > > > Software Engineer > > > > > > TicketNetwork.com > > > > > > 27 Terrace Drive > > > > > > Vernon, CT 06066 > > > > > > Ph: 860.870.3400 x278 > > > > > > Fax: 860.870.8744 > > > > > > Email: jo...@ti... <mailto: jo...@ti...> > > > > > > > > > > > > *TicketNetwork=99 > > > > > > *//Think outside the box office. > > > > > > //www.TicketNetwork.com <http://www.TicketNetwork.com<http://ww= w.ticketnetwork.com/> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > > This SF.Net email is sponsored by xPML, a groundbreaking > > > > > > scripting language > > > > > > that extends applications into web and mobile media. Attend the > > > > > > live webcast > > > > > > and join the prime developer group breaking into this new codin= g > > > > > > territory! > > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D24= 1720&dat=3D121642 > > > > > > > > > > > > _______________________________________________ > > > > > > anthem-dot-net-users mailing list > > > > > > ant...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-use= rs > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > > > Jonathan Aseltine > > > > > Software Engineer > > > > > TicketNetwork.com > > > > > 27 Terrace Drive > > > > > Vernon, CT 06066 > > > > > Ph: 860.870.3400 x278 > > > > > Fax: 860.870.8744 > > > > > Email: Jon...@Ti... <jon...@Ti...> > > > > > > > > > > *TicketNetwork=99 > > > > > **Think outside the box office. > > > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > > > > > > > > > > > > -- > > > > Jonathan Aseltine > > > > Software Engineer > > > > TicketNetwork.com > > > > 27 Terrace Drive > > > > Vernon, CT 06066 > > > > Ph: 860.870.3400 x278 > > > > Fax: 860.870.8744 > > > > Email: Jon...@Ti... <jon...@Ti...> > > > > > > > > *TicketNetwork=99 > > > > **Think outside the box office. > > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > > > > > > > -- > > Jonathan Aseltine > > Software Engineer > > TicketNetwork.com > > 27 Terrace Drive > > Vernon, CT 06066 > > Ph: 860.870.3400 x278 > > Fax: 860.870.8744 > > Email: Jon...@Ti... <jon...@Ti...> > > > > *TicketNetwork=99 > > **Think outside the box office. > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > |
From: Manu Temmerman-U. <man...@gm...> - 2006-03-10 20:24:33
|
It has to be something else I think.... If you look at the dropdownlist which also has an autocallback property. There it's also not stored in viewstate, and the dropdown keeps working after doing callback, right? On 3/10/06, Jon Aseltine <Jon...@ti...> wrote: > > It works, but you have to reset it on every Page_Load. This is better tha= n > it was for me (at least I have some flexibility now), but still a pain. I > have no idea why the attribute is not being saved in the viewstate. I wil= l > check it out further tonight. I wish Jason would weigh in on this -- he > would know what is going on. > > > Jon > > Manu Temmerman-Uyttenbroeck wrote: > > I just received write access to cvs. So I would like to know if the chang= e > you made is working? If it's bug free, then I could check it in... > > Manu. > > > On 3/10/06, Manu Temmerman-Uyttenbroeck < > man...@gm...> wrote: > > > > Hmmm but in your last mail you wrote that you *thought* it was fixed no= ? > > > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > I'm sure someone has mentioned it. It doesn't make much sense not to > > > have the capability. And given that it took me about 90 seconds to fi= x the > > > code, I'm not sure why it hasn't been done already. :) > > > > > > > > > Jon > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > Thx for the code... > > > I think we already had a discussion about this on the forum or > > > mailinglist. > > > I'll look it up... moment... > > > ok so somebody created a 'bug' about this on sourceforge: https://so= urceforge.net/tracker/?func=3Ddetail&atid=3D782464&aid=3D1446640&group_id= =3D151897 > > > > > > > > > I couldn't find anything else about it.... But I really think > > > somewhere we already were talking about this :) > > > > > > On 3/10/06, Jon Aseltine <Jon...@ti... > wrote: > > > > > > > > Sure. Added this to the class: > > > > > > > > private bool _autoCallBack; > > > > > > > > [DefaultValue(false)] > > > > public bool AutoCallBack > > > > { > > > > get { return _autoCallBack; } > > > > set { _autoCallBack =3D value; } > > > > } > > > > > > > > Then wrapped AddScriptAttribute: > > > > if (AutoCallBack) > > > > { > > > > Anthem.Manager.AddScriptAttribute( > > > > this, > > > > "onchange", > > > > string.Format( > > > > "AnthemTextBox_TextChanged(this, '{0}', > > > > true, true);", > > > > UniqueID > > > > ) > > > > ); > > > > } > > > > > > > > That's it. Works great. It's strange that this functionality exists > > > > for DropDownList and other controls, but not for TextBox. > > > > > > > > Jon > > > > > > > > > > > > Manu Temmerman-Uyttenbroeck wrote: > > > > > > > > What did you add to the snapshot? A way to disable AutoCallBack for > > > > the textbox? > > > > If the change is not too big, then maybe you could share it with al= l > > > > of us? > > > > > > > > Manu. > > > > > > > > > > > > On 3/9/06, Jon Aseltine <jo...@ti... > wrote: > > > > > > > > > > I added this to the snapshot and it works fine. I'll make a patch > > > > > if > > > > > anyone wants it (you'll have to tell me how, I am unix guy). > > > > > > > > > > Jon > > > > > > > > > > Jon Aseltine wrote: > > > > > > Hi, > > > > > > > > > > > > Anyone know why TextBox does not have the AutoCallBack attribut= e > > > > > > available? I'd like to turn it off. > > > > > > > > > > > > Jon > > > > > > > > > > > > > > > -- > > > > > Jonathan Aseltine > > > > > Software Engineer > > > > > TicketNetwork.com > > > > > 27 Terrace Drive > > > > > Vernon, CT 06066 > > > > > Ph: 860.870.3400 x278 > > > > > Fax: 860.870.8744 > > > > > Email: jo...@ti... <mailto: jo...@ti...> > > > > > > > > > > *TicketNetwork=99 > > > > > *//Think outside the box office. > > > > > //www.TicketNetwork.com <http://www.TicketNetwork.com<http://www.= ticketnetwork.com/> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > > This SF.Net email is sponsored by xPML, a groundbreaking scriptin= g > > > > > language > > > > > that extends applications into web and mobile media. Attend the > > > > > live webcast > > > > > and join the prime developer group breaking into this new coding > > > > > territory! > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D2417= 20&dat=3D121642 > > > > > > > > > > _______________________________________________ > > > > > anthem-dot-net-users mailing list > > > > > ant...@li... > > > > > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > > > > > > > > > > > > > > > > > -- > > > > > > > > Jonathan Aseltine > > > > Software Engineer > > > > TicketNetwork.com > > > > 27 Terrace Drive > > > > Vernon, CT 06066 > > > > Ph: 860.870.3400 x278 > > > > Fax: 860.870.8744 > > > > Email: Jon...@Ti... <jon...@Ti...> > > > > > > > > *TicketNetwork=99 > > > > **Think outside the box office. > > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > > > > > > > -- > > > Jonathan Aseltine > > > Software Engineer > > > TicketNetwork.com > > > 27 Terrace Drive > > > Vernon, CT 06066 > > > Ph: 860.870.3400 x278 > > > Fax: 860.870.8744 > > > Email: Jon...@Ti... <jon...@Ti...> > > > > > > *TicketNetwork=99 > > > **Think outside the box office. > > > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > > > > > > > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... <jon...@Ti...> > > *TicketNetwork=99 > **Think outside the box office. > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > |
From: Stuart A. <sr...@gm...> - 2006-03-10 19:20:06
|
you are correct, if you are already doing anthem callbacks on the login page, no soup for you. On 3/10/06, Jon Aseltine <Jon...@ti...> wrote: > > This works unless you are using Anthem callbacks on your login page. > Detecting session expiration is a nightmare. Hopefully Microsoft will fix > this sometime, since it is easy to do on their side of things (I think). > > Jon > > > Stuart Allen wrote: > > If you are using Forms Authentication and you attempt to make an anthem > call after timeout, you know what ugly error message comes up. Not real > user-friendly to say the least, so I've figured out how to degrade > gracefully and send them back to login. > > Since an anthem callback attempt gets redirected to the login page, this > is where you need to insert code. > > In the Page_load of your login page add the following: > > > if (Request.QueryString["Anthem_Callback"] =3D=3D "true") > { > Anthem.Manager.Register(this); > Anthem.Manager.AddScriptForClientSideEval("alert('Your session has time= d > out.');window.location=3D'/<YOURAPP>/';"); > } > > This will notify them with a message and redirect them to login. > A simple fix for a nasty problem. > > -- > ________________ > Stuart Allen > sr...@gm... > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... <jon...@Ti...> > > *TicketNetwork=99 > **Think outside the box office. > *www.TicketNetwork.com > > ------------------------------------------------------- This SF.Net emai= l > is sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast and join = the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642_______________________________________________ anthem-dot-net-use= rs mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > -- ________________ Stuart Allen sr...@gm... |
From: Jon A. <Jon...@Ti...> - 2006-03-10 18:38:55
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> This works unless you are using Anthem callbacks on your login page. Detecting session expiration is a nightmare. Hopefully Microsoft will fix this sometime, since it is easy to do on their side of things (I think).<br> <br> Jon<br> <br> Stuart Allen wrote: <blockquote cite="mid...@ma..." type="cite">If you are using Forms Authentication and you attempt to make an anthem call after timeout, you know what ugly error message comes up. Not real user-friendly to say the least, so I've figured out how to degrade gracefully and send them back to login. <br> <br> Since an anthem callback attempt gets redirected to the login page, this is where you need to insert code.<br> <br> In the Page_load of your login page add the following:<br> <br> <br> if (Request.QueryString["Anthem_Callback"] == "true") <br> {<br> Anthem.Manager.Register(this);<br> Anthem.Manager.AddScriptForClientSideEval("alert('Your session has timed out.');window.location='/<YOURAPP>/';");<br> }<br> <br> This will notify them with a message and redirect them to login. <br> A simple fix for a nasty problem.<br clear="all"> <br> -- <br> ________________<br> Stuart Allen<br> <a href="mailto:sr...@gm...">sr...@gm...</a> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Wayne D. <wa...@we...> - 2006-03-10 18:26:03
|
Hows this work then: <%@ Register TagPrefix="cc1" Namespace="Anthem.Examples" Assembly="__code" %> It's the Assembly bit I am talking about, how does that reference the App_Code folder?? What are the benefits to using that over the simple reference? Ta w.// |
From: Stuart A. <sr...@gm...> - 2006-03-10 15:25:09
|
If you are using Forms Authentication and you attempt to make an anthem cal= l after timeout, you know what ugly error message comes up. Not real user-friendly to say the least, so I've figured out how to degrade gracefully and send them back to login. Since an anthem callback attempt gets redirected to the login page, this is where you need to insert code. In the Page_load of your login page add the following: if (Request.QueryString["Anthem_Callback"] =3D=3D "true") { Anthem.Manager.Register(this); Anthem.Manager.AddScriptForClientSideEval("alert('Your session has timed out.');window.location=3D'/<YOURAPP>/';"); } This will notify them with a message and redirect them to login. A simple fix for a nasty problem. -- ________________ Stuart Allen sr...@gm... |
From: Jon A. <Jon...@Ti...> - 2006-03-10 08:42:58
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> One question. If I set AutoCallBack in the codebehind, do I need to keep resetting it? Seems like it should be saved in the viewstate. It does the first callback and then never does it again. Hmmmm... Well, I *thought* it was working ok. :)<br> <br> Jon<br> <br> Jon Aseltine wrote: <blockquote cite="mid...@Ti..." type="cite"> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> Sorry for the spam, but that should read "for compatibility's sake". It's 3 am, I think I'm lonely. :)<br> <br> Jon Aseltine wrote: <blockquote cite="mid...@Ti..." type="cite"> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> I should also add, that unfortunately, for capability's sake, the AutoCallBack attribute for TextBox will probably have to default to true, inverting the semantics of the other controls. Not a great situation. Unless Jason wants to bite the bullet and make everyone update their code (fwiw, that's my vote). :)<br> <br> Jon<br> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Manu Temmerman-U. <man...@gm...> - 2006-03-10 07:56:34
|
Thx for the code... I think we already had a discussion about this on the forum or mailinglist. I'll look it up... moment... ok so somebody created a 'bug' about this on sourceforge:=20 https://sourceforge.net/tracker/?func=3Ddetail&atid=3D782464&aid=3D1446640&= group_id=3D151897 I couldn't find anything else about it.... But I really think somewhere we already were talking about this :) On 3/10/06, Jon Aseltine <Jon...@ti...> wrote: > > Sure. Added this to the class: > > private bool _autoCallBack; > > [DefaultValue(false)] > public bool AutoCallBack > { > get { return _autoCallBack; } > set { _autoCallBack =3D value; } > } > > Then wrapped AddScriptAttribute: > if (AutoCallBack) > { > Anthem.Manager.AddScriptAttribute( > this, > "onchange", > string.Format( > "AnthemTextBox_TextChanged(this, '{0}', true, > true);", > UniqueID > ) > ); > } > > That's it. Works great. It's strange that this functionality exists for > DropDownList and other controls, but not for TextBox. > > Jon > > > Manu Temmerman-Uyttenbroeck wrote: > > What did you add to the snapshot? A way to disable AutoCallBack for the > textbox? > If the change is not too big, then maybe you could share it with all of > us? > > Manu. > > > On 3/9/06, Jon Aseltine <jo...@ti...> wrote: > > > > I added this to the snapshot and it works fine. I'll make a patch if > > anyone wants it (you'll have to tell me how, I am unix guy). > > > > Jon > > > > Jon Aseltine wrote: > > > Hi, > > > > > > Anyone know why TextBox does not have the AutoCallBack attribute > > > available? I'd like to turn it off. > > > > > > Jon > > > > > > -- > > Jonathan Aseltine > > Software Engineer > > TicketNetwork.com > > 27 Terrace Drive > > Vernon, CT 06066 > > Ph: 860.870.3400 x278 > > Fax: 860.870.8744 > > Email: jo...@ti... <mailto: jo...@ti...> > > > > *TicketNetwork=99 > > *//Think outside the box office. > > //www.TicketNetwork.com <http://www.TicketNetwork.com<http://www.ticket= network.com/> > > > > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a groundbreaking scripting > > language > > that extends applications into web and mobile media. Attend the live > > webcast > > and join the prime developer group breaking into this new coding > > territory! > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642 > > _______________________________________________ > > anthem-dot-net-users mailing list > > ant...@li... > > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > > -- > > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... <jon...@Ti...> > > *TicketNetwork=99 > **Think outside the box office. > *www.TicketNetwork.com <http://www.ticketnetwork.com/> > > |
From: Jon A. <Jon...@Ti...> - 2006-03-10 07:49:08
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> Sorry for the spam, but that should read "for compatibility's sake". It's 3 am, I think I'm lonely. :)<br> <br> Jon Aseltine wrote: <blockquote cite="mid...@Ti..." type="cite"> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> I should also add, that unfortunately, for capability's sake, the AutoCallBack attribute for TextBox will probably have to default to true, inverting the semantics of the other controls. Not a great situation. Unless Jason wants to bite the bullet and make everyone update their code (fwiw, that's my vote). :)<br> <br> Jon<br> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Jon A. <Jon...@Ti...> - 2006-03-10 07:46:16
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> </head> <body bgcolor="#ffffff" text="#000000"> I should also add, that unfortunately, for capability's sake, the AutoCallBack attribute for TextBox will probably have to default to true, inverting the semantics of the other controls. Not a great situation. Unless Jason wants to bite the bullet and make everyone update their code (fwiw, that's my vote). :)<br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="mid...@ma..." type="cite"> <div>What did you add to the snapshot? A way to disable AutoCallBack for the textbox?</div> <div>If the change is not too big, then maybe you could share it with all of us?</div> <div> </div> <div>Manu.<br> <br> </div> <div><span class="gmail_quote">On 3/9/06, <b class="gmail_sendername">Jon Aseltine</b> <<a href="mailto:jo...@ti...">jo...@ti...</a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">I added this to the snapshot and it works fine. I'll make a patch if<br> anyone wants it (you'll have to tell me how, I am unix guy). <br> <br> Jon<br> <br> Jon Aseltine wrote:<br> > Hi,<br> ><br> > Anyone know why TextBox does not have the AutoCallBack attribute<br> > available? I'd like to turn it off.<br> ><br> > Jon<br> <br> <br> --<br> Jonathan Aseltine <br> Software Engineer<br> TicketNetwork.com<br> 27 Terrace Drive<br> Vernon, CT 06066<br> Ph: 860.870.3400 x278<br> Fax: 860.870.8744<br> Email: <a href="mailto:jo...@ti...">jo...@ti...</a> <mailto:<a href="mailto:jo...@ti..."> jo...@ti...</a>><br> <br> *TicketNetwork™<br> *//Think outside the box office.<br> //www.TicketNetwork.com <<a href="http://www.TicketNetwork.com">http://www.TicketNetwork.com</a>><br> <br> <br> <br> <br> <br> ------------------------------------------------------- <br> This SF.Net email is sponsored by xPML, a groundbreaking scripting language<br> that extends applications into web and mobile media. Attend the live webcast<br> and join the prime developer group breaking into this new coding territory! <br> <a href="http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642">http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642</a><br> _______________________________________________ <br> anthem-dot-net-users mailing list<br> <a href="mailto:ant...@li...">ant...@li...</a><br> <a href="https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users">https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users</a><br> </blockquote> </div> <br> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Jon A. <Jon...@Ti...> - 2006-03-10 07:39:40
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=windows-1252" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> Sure. Added this to the class:<br> <br> private bool _autoCallBack;<br> <br> [DefaultValue(false)]<br> public bool AutoCallBack<br> {<br> get { return _autoCallBack; }<br> set { _autoCallBack = value; }<br> }<br> <br> Then wrapped AddScriptAttribute:<br> if (AutoCallBack)<br> {<br> Anthem.Manager.AddScriptAttribute(<br> this,<br> "onchange",<br> string.Format(<br> "AnthemTextBox_TextChanged(this, '{0}', true, true);",<br> UniqueID<br> )<br> );<br> }<br> <br> That's it. Works great. It's strange that this functionality exists for DropDownList and other controls, but not for TextBox.<br> <br> Jon<br> <br> Manu Temmerman-Uyttenbroeck wrote: <blockquote cite="mid...@ma..." type="cite"> <div>What did you add to the snapshot? A way to disable AutoCallBack for the textbox?</div> <div>If the change is not too big, then maybe you could share it with all of us?</div> <div> </div> <div>Manu.<br> <br> </div> <div><span class="gmail_quote">On 3/9/06, <b class="gmail_sendername">Jon Aseltine</b> <<a href="mailto:jo...@ti...">jo...@ti...</a>> wrote:</span> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0px 0px 0px 0.8ex; padding-left: 1ex;">I added this to the snapshot and it works fine. I'll make a patch if<br> anyone wants it (you'll have to tell me how, I am unix guy). <br> <br> Jon<br> <br> Jon Aseltine wrote:<br> > Hi,<br> ><br> > Anyone know why TextBox does not have the AutoCallBack attribute<br> > available? I'd like to turn it off.<br> ><br> > Jon<br> <br> <br> --<br> Jonathan Aseltine <br> Software Engineer<br> TicketNetwork.com<br> 27 Terrace Drive<br> Vernon, CT 06066<br> Ph: 860.870.3400 x278<br> Fax: 860.870.8744<br> Email: <a href="mailto:jo...@ti...">jo...@ti...</a> <mailto:<a href="mailto:jo...@ti..."> jo...@ti...</a>><br> <br> *TicketNetwork™<br> *//Think outside the box office.<br> //www.TicketNetwork.com <<a href="http://www.TicketNetwork.com">http://www.TicketNetwork.com</a>><br> <br> <br> <br> <br> <br> ------------------------------------------------------- <br> This SF.Net email is sponsored by xPML, a groundbreaking scripting language<br> that extends applications into web and mobile media. Attend the live webcast<br> and join the prime developer group breaking into this new coding territory! <br> <a href="http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642">http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642</a><br> _______________________________________________ <br> anthem-dot-net-users mailing list<br> <a href="mailto:ant...@li...">ant...@li...</a><br> <a href="https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users">https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users</a><br> </blockquote> </div> <br> </blockquote> <br> <br> <div class="moz-signature">-- <br> <font size="2"><font face="Arial">Jonathan Aseltine<br> Software Engineer<br> </font></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">TicketNetwork.com<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">27 Terrace Drive<br> </span></font><st1:street w:st="on"><st1:address style="background-position: left bottom; background-image: url(res://ietag.dll/#34/#1001); background-repeat: repeat-x;" tabindex="0" w:st="on"><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Vernon, CT</span></font></st1:address></st1:street><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"> 06066<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Ph: 860.870.3400 x278<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Fax: 860.870.8744<br> </span></font><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;">Email: <a href="mailto:jon...@Ti...">Jon...@Ti...</a><br> <br> </span></font><b><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial; font-weight: bold;">TicketNetwork™<br> </span></font></b><em><i><font face="Times New Roman" size="3"><span style="font-size: 12pt;">Think outside the box office.<br> </span></font></i></em><font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font><font face="Arial" size="2"><a href="http://www.TicketNetwork.com">www.TicketNetwork.com</a></font><br> <br> <font face="Arial" size="2"><span style="font-size: 10pt; font-family: Arial;"></span></font> </div> </body> </html> |
From: Manu Temmerman-U. <man...@gm...> - 2006-03-10 06:33:37
|
What did you add to the snapshot? A way to disable AutoCallBack for the textbox? If the change is not too big, then maybe you could share it with all of us? Manu. On 3/9/06, Jon Aseltine <jo...@ti...> wrote: > > I added this to the snapshot and it works fine. I'll make a patch if > anyone wants it (you'll have to tell me how, I am unix guy). > > Jon > > Jon Aseltine wrote: > > Hi, > > > > Anyone know why TextBox does not have the AutoCallBack attribute > > available? I'd like to turn it off. > > > > Jon > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: jo...@ti... <mailto:jo...@ti...> > > *TicketNetwork=99 > *//Think outside the box office. > //www.TicketNetwork.com <http://www.TicketNetwork.com> > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat= =3D121642 > _______________________________________________ > anthem-dot-net-users mailing list > ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > |
From: Pieter S. <psi...@ya...> - 2006-03-09 23:29:14
|
Hi Mark, no, there isn't even a Treeview control in VS.NET 2003/ .NET 1.1... so that's why I assumed you were asking about the VS.NET 2005 / .NET 2.0 Treeview control. Before 2.0, there were a few controls (tied to IE) called the Internet Web Controls, which I've used a couple of times in my Intranets but at least the Treeview (one of them) was really slow with traversing folders. I still do use one at my site at http://www.pietsieg.com but I'm looking forward to be able to upgrade to .NET 2.0 and use the Treeview control there, as well as Anthem.NET and Atlas. I'm using the new Treeview in one of my intranets right now and its looking real good - but I've changed from traversing the filesystem to database access. Btw Manu, I have just entered a post in the anthem forum at http://forums.anthemdotnet.com/forums/index.php Cheers, Pieter ma...@kh... wrote: I think that might be my original request for that control. I thought the TreeView was only avail. in .Net 2.0. I might not have made that clear in the original request. Is there a Treeview with callback in 1.1? Mark > I didn't read the article (yet), but if that's true, could you maybe also > make a post on the forum? > > Manu. > > http://forums.anthemdotnet.com/forums/index.php > > > > On 3/9/06, Pieter Siegers wrote: >> >> Hi all, >> >> I just saw a new request made on SF.net where the addition was asked of >> the Treeview control. This control however does already offer a callback >> mechanism out of the box - just review this article (just an example >> when >> searching the web for "asp:TreeView callback"): >> >> >> http://www.dotnetjunkies.com/Tutorial/E80EC96F-1C32-4855-85AE-9E30EECF13D7.dcik >> >> Cheers, >> Pieter >> >> >> >> Visit my web site: >> http://www.pietsieg.com >> >> ------------------------------ >> Relax. Yahoo! Mail virus >> scanninghelps >> detect nasty viruses! >> >> > ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ anthem-dot-net-users mailing list ant...@li... https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users Visit my web site: http://www.pietsieg.com __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Jon A. <jo...@ti...> - 2006-03-09 21:32:53
|
I added this to the snapshot and it works fine. I'll make a patch if anyone wants it (you'll have to tell me how, I am unix guy). Jon Jon Aseltine wrote: > Hi, > > Anyone know why TextBox does not have the AutoCallBack attribute > available? I'd like to turn it off. > > Jon -- Jonathan Aseltine Software Engineer TicketNetwork.com 27 Terrace Drive Vernon, CT 06066 Ph: 860.870.3400 x278 Fax: 860.870.8744 Email: jo...@ti... <mailto:jo...@ti...> *TicketNetwork™ *//Think outside the box office. //www.TicketNetwork.com <http://www.TicketNetwork.com> |
From: Jon A. <jo...@ti...> - 2006-03-09 20:32:09
|
Hi, Anyone know why TextBox does not have the AutoCallBack attribute available? I'd like to turn it off. Jon -- Jonathan Aseltine Software Engineer TicketNetwork.com 27 Terrace Drive Vernon, CT 06066 Ph: 860.870.3400 x278 Fax: 860.870.8744 Email: jo...@ti... <mailto:jo...@ti...> *TicketNetwork™ *//Think outside the box office. //www.TicketNetwork.com <http://www.TicketNetwork.com> |
From: John M. <jm...@ge...> - 2006-03-09 20:09:19
|
Here's the link to the mirror I used. http://planetmirror.com/pub/browsers/ie/32bit/standalone/ie55sp2_nt.zip -----Original Message----- From: John Murphy [mailto:jm...@ge...] Sent: Thursday, March 09, 2006 3:06 PM Cc: ant...@li... Subject: RE: [Anthem.NET-users] anthem without callbacks The download worked fine for me. Which mirror did you use? I used the Australia zip file. Unzip, run iexplore.exe. I'm not sure how to make it accept cookies though. I try not to require them. -----Original Message----- From: Jon Aseltine [mailto:jo...@ti...] Sent: Thursday, March 09, 2006 2:33 PM To: John Murphy Cc: ant...@li... Subject: Re: [Anthem.NET-users] anthem without callbacks The stand-alone IE5.5SP2 on that site is broken. CRC failure on all the zip files for that version. Just a heads up. Also I have tried a stand-alone version of that before, and it was pretty much useless because session cookies don't work. Jon Pieter Siegers wrote: > > "We're leaning towards IE 5.5+, FF 1+, Opera 8.5+, and Safari 2+." > Here at our company for our internet sites we check all browsers like > above but Opera not (yet). For our intranets we check only latest > stable versions of IE, FF, and Safari (for Mac OSX). > > BTW, thanx for the site pointer John! :-) > > Cheers, > Pieter > > */John Murphy <jm...@ge...>/* wrote: > > Anyone attempting to test in old browsers will find this site > useful. It > contains standalone builds of every version of IE, as well as many > other > browsers. Out of curiosity, what browsers do other Anthem users > support? > We're leaning towards IE 5.5+, FF 1+, Opera 8.5+, and Safari 2+. > Those are > the browsers I test all my code on. > > http://browsers.evolt.org/ > > -----Original Message----- > From: Jon Aseltine [mailto:Jon...@Ti...] > Sent: Thursday, March 09, 2006 10:08 AM > To: br...@aj... > Cc: ant...@li... > Subject: Re: [Anthem.NET-users] anthem without callbacks > > > This is interesting. I just assumed it wouldn't support it. > However, I did > try to run my stuff on IE 5.0 (a standalone version) and it did > what looked > suspiciously like a postback on what should have been an AJAX > callback and > then crapped out with a javascript error, *but*, that could have > been the > fancy javascript effects library (moo.fx, awesome) which I will almost > certainly have to disable. > > We have 5-6 VM's with various OS's and browsers installed to test > all this, > so I will let you know what happens. If indeed all I have to do is > disable > the effects library, I think I might wet my pants with joy. > > As for those who have javascript disabled, then are screwed > already with our > current application, so I'm not really worried about them. > > Jon > > Brian @ AJP wrote: > > Hold on. You want to catch the 5% of your audience still using > IE5.5? Is there a problem there? > > As far as I understand it, AJAX (and the Anthem implementation of > it) leverages the HTTPRequest object that has been in JavaScript > for many > years, and has been supported to varying degrees in the major > browsers since > level 4 - that's IE4, NS4, etc. > > In theory at least, your IE5.5 users should be able to use the same > site as the other 95% without any changes. > > I'm sure someone will shoot me down if I'm wrong. > > Now, aside from the version of the browser, I *can* see a need to > cater for those users who have JavaScript turned off within their > browsers. > This may include IE6 and IE7 users since it's often a company or IT > department policy. > > > > Brian Lowe, AJP Interactive > w: www.ajpi.co.uk e: br...@aj... > > > > > > _____ > > From: ant...@li... > [mailto:ant...@li...] On > Behalf Of Jon > Aseltine > Sent: 08 March 2006 18:39 > To: Pieter Siegers > Cc: ant...@li... > Subject: Re: [Anthem.NET-users] anthem without callbacks > > > Just a numbers thing. Although 95% of our customers will be > able to use the AJAX enabled site, we have to capture as much of the > remaining 5% as possible. So I will use some browser > identification magic, > and a redirect to the site they can handle. Although I would love > to ignore > that 5%, by the numbers I have seen a significant percentage still > rely on > IE 5.5. > > I'll keep everyone up-to-date on my progress. But the > fall-back solution is to use a script to change anthem to asp and > then a lot > of #if AJAX...#endif's int the codebehind. Fortunately I designed > this from > the beginning thinking that I might have to do it. > > Jon > > Pieter Siegers wrote: > > Why would you need to do that, Jon? Just curious... > > Jon Aseltine > wrote: > > Hi, > > I need to write a parallel version of the > site I am working on: one that does not use AJAX. Since Anthem > controls are > derived from standard controls, I am guessing that if am careful about > setting attributes in the codebehind, I can use the same codebase > for both, > without changing the .aspx files at all. Is this assumption > correct? It > would be awesome if it was. > > Jon > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork�"� > Think outside the box office. > www.TicketNetwork.com > > > > ------------------------------------------------------- This > SF.Net email is > sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast > and join the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > Visit my web site: > http://www.pietsieg.com > _____ > > Yahoo! Mail > Use Photomail > l.yahoo.com> to share photos without annoying attachments. > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork(tm) > Think outside the box office. > www.TicketNetwork.com > > > ------------------------------------------------------- This > SF.Net email is sponsored by xPML, a groundbreaking scripting > language that > extends applications into web and mobile media. Attend the live > webcast and > join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork(tm) > Think outside the box office. > www.TicketNetwork.com > > > ------------------------------------------------------- This > SF.Net email is > sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast > and join the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing list > ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > Visit my web site: > http://www.pietsieg.com > > ---------------------------------------------------------------------- > -- > Yahoo! Mail > Bring photos to life! New PhotoMail > <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=39174/*http://photomail.mai l.yahoo.com> > makes sharing a breeze. -- Jonathan Aseltine Software Engineer TicketNetwork.com 27 Terrace Drive Vernon, CT 06066 Ph: 860.870.3400 x278 Fax: 860.870.8744 Email: jo...@ti... <mailto:jo...@ti...> *TicketNetwork(tm) *//Think outside the box office. //www.TicketNetwork.com <http://www.TicketNetwork.com> ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ anthem-dot-net-users mailing list ant...@li... https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users |
From: John M. <jm...@ge...> - 2006-03-09 20:06:17
|
The download worked fine for me. Which mirror did you use? I used the Australia zip file. Unzip, run iexplore.exe. I'm not sure how to make it accept cookies though. I try not to require them. -----Original Message----- From: Jon Aseltine [mailto:jo...@ti...] Sent: Thursday, March 09, 2006 2:33 PM To: John Murphy Cc: ant...@li... Subject: Re: [Anthem.NET-users] anthem without callbacks The stand-alone IE5.5SP2 on that site is broken. CRC failure on all the zip files for that version. Just a heads up. Also I have tried a stand-alone version of that before, and it was pretty much useless because session cookies don't work. Jon Pieter Siegers wrote: > > "We're leaning towards IE 5.5+, FF 1+, Opera 8.5+, and Safari 2+." > Here at our company for our internet sites we check all > browsers like above but Opera not (yet). > For our intranets we check only latest stable versions > of IE, FF, and Safari (for Mac OSX). > > BTW, thanx for the site pointer John! :-) > > Cheers, > Pieter > > */John Murphy <jm...@ge...>/* wrote: > > Anyone attempting to test in old browsers will find this site > useful. It > contains standalone builds of every version of IE, as well as many > other > browsers. Out of curiosity, what browsers do other Anthem users > support? > We're leaning towards IE 5.5+, FF 1+, Opera 8.5+, and Safari 2+. > Those are > the browsers I test all my code on. > > http://browsers.evolt.org/ > > -----Original Message----- > From: Jon Aseltine [mailto:Jon...@Ti...] > Sent: Thursday, March 09, 2006 10:08 AM > To: br...@aj... > Cc: ant...@li... > Subject: Re: [Anthem.NET-users] anthem without callbacks > > > This is interesting. I just assumed it wouldn't support it. > However, I did > try to run my stuff on IE 5.0 (a standalone version) and it did > what looked > suspiciously like a postback on what should have been an AJAX > callback and > then crapped out with a javascript error, *but*, that could have > been the > fancy javascript effects library (moo.fx, awesome) which I will almost > certainly have to disable. > > We have 5-6 VM's with various OS's and browsers installed to test > all this, > so I will let you know what happens. If indeed all I have to do is > disable > the effects library, I think I might wet my pants with joy. > > As for those who have javascript disabled, then are screwed > already with our > current application, so I'm not really worried about them. > > Jon > > Brian @ AJP wrote: > > Hold on. You want to catch the 5% of your audience still using > IE5.5? Is there a problem there? > > As far as I understand it, AJAX (and the Anthem implementation of > it) leverages the HTTPRequest object that has been in JavaScript > for many > years, and has been supported to varying degrees in the major > browsers since > level 4 - that's IE4, NS4, etc. > > In theory at least, your IE5.5 users should be able to use the same > site as the other 95% without any changes. > > I'm sure someone will shoot me down if I'm wrong. > > Now, aside from the version of the browser, I *can* see a need to > cater for those users who have JavaScript turned off within their > browsers. > This may include IE6 and IE7 users since it's often a company or IT > department policy. > > > > Brian Lowe, AJP Interactive > w: www.ajpi.co.uk e: br...@aj... > > > > > > _____ > > From: ant...@li... > [mailto:ant...@li...] On > Behalf Of Jon > Aseltine > Sent: 08 March 2006 18:39 > To: Pieter Siegers > Cc: ant...@li... > Subject: Re: [Anthem.NET-users] anthem without callbacks > > > Just a numbers thing. Although 95% of our customers will be > able to use the AJAX enabled site, we have to capture as much of the > remaining 5% as possible. So I will use some browser > identification magic, > and a redirect to the site they can handle. Although I would love > to ignore > that 5%, by the numbers I have seen a significant percentage still > rely on > IE 5.5. > > I'll keep everyone up-to-date on my progress. But the > fall-back solution is to use a script to change anthem to asp and > then a lot > of #if AJAX...#endif's int the codebehind. Fortunately I designed > this from > the beginning thinking that I might have to do it. > > Jon > > Pieter Siegers wrote: > > Why would you need to do that, Jon? Just curious... > > Jon Aseltine > wrote: > > Hi, > > I need to write a parallel version of the > site I am working on: one that does not use AJAX. Since Anthem > controls are > derived from standard controls, I am guessing that if am careful about > setting attributes in the codebehind, I can use the same codebase > for both, > without changing the .aspx files at all. Is this assumption > correct? It > would be awesome if it was. > > Jon > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork�"� > Think outside the box office. > www.TicketNetwork.com > > > > ------------------------------------------------------- This > SF.Net email is > sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast > and join the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > Visit my web site: > http://www.pietsieg.com > _____ > > Yahoo! Mail > Use Photomail > l.yahoo.com> to share photos without annoying attachments. > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork(tm) > Think outside the box office. > www.TicketNetwork.com > > > ------------------------------------------------------- This > SF.Net email is sponsored by xPML, a groundbreaking scripting > language that > extends applications into web and mobile media. Attend the live > webcast and > join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork(tm) > Think outside the box office. > www.TicketNetwork.com > > > ------------------------------------------------------- This > SF.Net email is > sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast > and join the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing list > ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > Visit my web site: > http://www.pietsieg.com > > ---------------------------------------------------------------------- > -- > Yahoo! Mail > Bring photos to life! New PhotoMail > <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=39174/*http://photomail.mai l.yahoo.com> > makes sharing a breeze. -- Jonathan Aseltine Software Engineer TicketNetwork.com 27 Terrace Drive Vernon, CT 06066 Ph: 860.870.3400 x278 Fax: 860.870.8744 Email: jo...@ti... <mailto:jo...@ti...> *TicketNetwork(tm) *//Think outside the box office. //www.TicketNetwork.com <http://www.TicketNetwork.com> |
From: Jon A. <jo...@ti...> - 2006-03-09 19:33:26
|
The stand-alone IE5.5SP2 on that site is broken. CRC failure on all the zip files for that version. Just a heads up. Also I have tried a stand-alone version of that before, and it was pretty much useless because session cookies don't work. Jon Pieter Siegers wrote: > > "We're leaning towards IE 5.5+, FF 1+, Opera 8.5+, and Safari 2+." > Here at our company for our internet sites we check all > browsers like above but Opera not (yet). > For our intranets we check only latest stable versions > of IE, FF, and Safari (for Mac OSX). > > BTW, thanx for the site pointer John! :-) > > Cheers, > Pieter > > */John Murphy <jm...@ge...>/* wrote: > > Anyone attempting to test in old browsers will find this site > useful. It > contains standalone builds of every version of IE, as well as many > other > browsers. Out of curiosity, what browsers do other Anthem users > support? > We're leaning towards IE 5.5+, FF 1+, Opera 8.5+, and Safari 2+. > Those are > the browsers I test all my code on. > > http://browsers.evolt.org/ > > -----Original Message----- > From: Jon Aseltine [mailto:Jon...@Ti...] > Sent: Thursday, March 09, 2006 10:08 AM > To: br...@aj... > Cc: ant...@li... > Subject: Re: [Anthem.NET-users] anthem without callbacks > > > This is interesting. I just assumed it wouldn't support it. > However, I did > try to run my stuff on IE 5.0 (a standalone version) and it did > what looked > suspiciously like a postback on what should have been an AJAX > callback and > then crapped out with a javascript error, *but*, that could have > been the > fancy javascript effects library (moo.fx, awesome) which I will almost > certainly have to disable. > > We have 5-6 VM's with various OS's and browsers installed to test > all this, > so I will let you know what happens. If indeed all I have to do is > disable > the effects library, I think I might wet my pants with joy. > > As for those who have javascript disabled, then are screwed > already with our > current application, so I'm not really worried about them. > > Jon > > Brian @ AJP wrote: > > Hold on. You want to catch the 5% of your audience still using > IE5.5? Is there a problem there? > > As far as I understand it, AJAX (and the Anthem implementation of > it) leverages the HTTPRequest object that has been in JavaScript > for many > years, and has been supported to varying degrees in the major > browsers since > level 4 - that's IE4, NS4, etc. > > In theory at least, your IE5.5 users should be able to use the same > site as the other 95% without any changes. > > I'm sure someone will shoot me down if I'm wrong. > > Now, aside from the version of the browser, I *can* see a need to > cater for those users who have JavaScript turned off within their > browsers. > This may include IE6 and IE7 users since it's often a company or IT > department policy. > > > > Brian Lowe, AJP Interactive > w: www.ajpi.co.uk e: br...@aj... > > > > > > _____ > > From: ant...@li... > [mailto:ant...@li...] On > Behalf Of Jon > Aseltine > Sent: 08 March 2006 18:39 > To: Pieter Siegers > Cc: ant...@li... > Subject: Re: [Anthem.NET-users] anthem without callbacks > > > Just a numbers thing. Although 95% of our customers will be > able to use the AJAX enabled site, we have to capture as much of the > remaining 5% as possible. So I will use some browser > identification magic, > and a redirect to the site they can handle. Although I would love > to ignore > that 5%, by the numbers I have seen a significant percentage still > rely on > IE 5.5. > > I'll keep everyone up-to-date on my progress. But the > fall-back solution is to use a script to change anthem to asp and > then a lot > of #if AJAX...#endif's int the codebehind. Fortunately I designed > this from > the beginning thinking that I might have to do it. > > Jon > > Pieter Siegers wrote: > > Why would you need to do that, Jon? Just curious... > > Jon Aseltine > wrote: > > Hi, > > I need to write a parallel version of the > site I am working on: one that does not use AJAX. Since Anthem > controls are > derived from standard controls, I am guessing that if am careful about > setting attributes in the codebehind, I can use the same codebase > for both, > without changing the .aspx files at all. Is this assumption > correct? It > would be awesome if it was. > > Jon > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork�"� > Think outside the box office. > www.TicketNetwork.com > > > > ------------------------------------------------------- This > SF.Net email is > sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast > and join the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > Visit my web site: > http://www.pietsieg.com > _____ > > Yahoo! Mail > Use Photomail > l.yahoo.com> to share photos without annoying attachments. > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork(tm) > Think outside the box office. > www.TicketNetwork.com > > > ------------------------------------------------------- This > SF.Net email is sponsored by xPML, a groundbreaking scripting > language that > extends applications into web and mobile media. Attend the live > webcast and > join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > -- > Jonathan Aseltine > Software Engineer > TicketNetwork.com > 27 Terrace Drive > Vernon, CT 06066 > Ph: 860.870.3400 x278 > Fax: 860.870.8744 > Email: Jon...@Ti... > > TicketNetwork(tm) > Think outside the box office. > www.TicketNetwork.com > > > ------------------------------------------------------- This > SF.Net email is > sponsored by xPML, a groundbreaking scripting language that extends > applications into web and mobile media. Attend the live webcast > and join the > prime developer group breaking into this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing > list ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > anthem-dot-net-users mailing list > ant...@li... > https://lists.sourceforge.net/lists/listinfo/anthem-dot-net-users > > > > > Visit my web site: > http://www.pietsieg.com > > ------------------------------------------------------------------------ > Yahoo! Mail > Bring photos to life! New PhotoMail > <http://pa.yahoo.com/*http://us.rd.yahoo.com/evt=39174/*http://photomail.mail.yahoo.com> > makes sharing a breeze. -- Jonathan Aseltine Software Engineer TicketNetwork.com 27 Terrace Drive Vernon, CT 06066 Ph: 860.870.3400 x278 Fax: 860.870.8744 Email: jo...@ti... <mailto:jo...@ti...> *TicketNetwork™ *//Think outside the box office. //www.TicketNetwork.com <http://www.TicketNetwork.com> |
From: <ma...@kh...> - 2006-03-09 19:31:55
|
I think that might be my original request for that control. I thought the TreeView was only avail. in .Net 2.0. I might not have made that clear in the original request. Is there a Treeview with callback in 1.1? Mark > I didn't read the article (yet), but if that's true, could you maybe also > make a post on the forum? > > Manu. > > http://forums.anthemdotnet.com/forums/index.php > > > > On 3/9/06, Pieter Siegers <psi...@ya...> wrote: >> >> Hi all, >> >> I just saw a new request made on SF.net where the addition was asked of >> the Treeview control. This control however does already offer a callback >> mechanism out of the box - just review this article (just an example >> when >> searching the web for "asp:TreeView callback"): >> >> >> http://www.dotnetjunkies.com/Tutorial/E80EC96F-1C32-4855-85AE-9E30EECF13D7.dcik >> >> Cheers, >> Pieter >> >> >> >> Visit my web site: >> http://www.pietsieg.com >> >> ------------------------------ >> Relax. Yahoo! Mail virus >> scanning<http://us.rd.yahoo.com/mail_us/taglines/virusall/*http://communications.yahoo.com/features.php?page=221>helps >> detect nasty viruses! >> >> > |
From: Manu Temmerman-U. <man...@gm...> - 2006-03-09 18:42:12
|
I didn't read the article (yet), but if that's true, could you maybe also make a post on the forum? Manu. http://forums.anthemdotnet.com/forums/index.php On 3/9/06, Pieter Siegers <psi...@ya...> wrote: > > Hi all, > > I just saw a new request made on SF.net where the addition was asked of > the Treeview control. This control however does already offer a callback > mechanism out of the box - just review this article (just an example when > searching the web for "asp:TreeView callback"): > > > http://www.dotnetjunkies.com/Tutorial/E80EC96F-1C32-4855-85AE-9E30EECF13D= 7.dcik > > Cheers, > Pieter > > > > Visit my web site: > http://www.pietsieg.com > > ------------------------------ > Relax. Yahoo! Mail virus scanning<http://us.rd.yahoo.com/mail_us/taglines= /virusall/*http://communications.yahoo.com/features.php?page=3D221>helps de= tect nasty viruses! > > |
From: Pieter S. <psi...@ya...> - 2006-03-09 18:37:15
|
Hi all, I just saw a new request made on SF.net where the addition was asked of the Treeview control. This control however does already offer a callback mechanism out of the box - just review this article (just an example when searching the web for "asp:TreeView callback"): http://www.dotnetjunkies.com/Tutorial/E80EC96F-1C32-4855-85AE-9E30EECF13D7.dcik Cheers, Pieter Visit my web site: http://www.pietsieg.com --------------------------------- Relax. Yahoo! Mail virus scanning helps detect nasty viruses! |