Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:779418
More Search Options
RSS Available
Matching Posts
Re: Setting focus on control in the code-behind VB.NET
Yes. It is a better option.
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
HarveyTriana
on 5/7/2008
Re: Setting focus on control in the code-behind VB.NET
Look this approach: Private Sub SetFocusScript(ByVal ClientID As String) If Not ClientScript.IsStartupScriptRegistered("SetFocus") Then Dim s As String = "<script language=|javascript| type=|text/javascript|>" + "document.form1." + ClientID + ".focus();" + "</script>" ClientScript.RegisterStartupScript(Me.[GetType](), "SetFocus", s.Replace("|"C, """"C)) End If End Sub ' samples Protected Sub
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
HarveyTriana
on 5/7/2008
Re: UpdatePanel + Timer + System.Drawing.Image + ashx = Postback
- wordracr say this: <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <asp:Timer ID="Timer1" runat="server" Interval ="2000"></asp:Timer> <asp:Image ID="Image1" runat="server" Height="200px" Width="200px"
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
HarveyTriana
on 3/31/2008
Re: Callback dynamic Image, client memory problem
Six hours to solve this problem! The problem was here (js module): ... img.onload = function() {plot.src = img.src;} ... I found a great description of this problem here: http://www.bazon.net/mishoo/articles.epl?art_id=824 I wrote this solution: // that is real Ajax! var M_img, M_plot; function refreshM_plot(divName) { var div = document.getElementById(divName); M_plot = div.getElementsByTagName("M_img")[0]; M_img = new Image(M_plot.width, M_plot.height); M_img.src = M_plot.src + "
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
HarveyTriana
on 3/29/2008
Re: Callback dynamic Image, client memory problem
.... Sorry for that wordwrap. Then post again: I build a plot image from Callback. My Ajax schema is: 1. The Generic Handler: <%@ WebHandler Language="C#" Class="carplot" %> using System; using System.Web; using System.Drawing; using System.Drawing.Imaging; using System.IO; public class carplot : IHttpHandler, System.Web.SessionState.IRequiresSessionState { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "image/png"; context.Response
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
HarveyTriana
on 3/28/2008
Callback dynamic Image, client memory problem
I build a plot image from Callback. My Ajax schema is: The Generic Handler: <% @ WebHandler Language ="C#" Class ="carplot" %> using System; using System.Web; using System.Drawing; using System.Drawing.Imaging; using System.IO; public class carplot : IHttpHandler , System.Web.SessionState. IRequiresSessionState { public void ProcessRequest( HttpContext context) { context.Response.ContentType = "image/png" ; context.Response.Cache.SetNoStore(); context.Response
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
HarveyTriana
on 3/28/2008
Re: VS80-KB915364-X86-ENU.exe - The upgrade patch cannot be installed
Hello- This same applies to VS80sp1-KB926601-X86-ENU VS80sp1-KB932232-X86-ENU???
Posted to
VS 2005 Web Application Projects
(Forum)
by
HarveyTriana
on 3/21/2008
Re: Supress Some Status Messages in Browser
Thanks Chetan... Yes, i am working a similar technic (implementing ICallbackEventHandler) I was trying Render an web Image control, something like: // create a plot from Generic Handler (ashx) ... plot.DrawScreen(); ... // render Image sr = new StringWriter(); htm = new HtmlTextWriter(sr); imgPlot.ImageUrl = "plot.ashx"; imgPlot.RenderControl(htm); m_CallbackResult += "divPlot|" + sr.ToString(); // ...or something ... The problem is: imgPlot.ImageUrl = "plot.ashx";
Posted to
ASP.NET AJAX UI
(Forum)
by
HarveyTriana
on 3/13/2008
Supress Some Status Messages in Browser
I have working a real time system. I use callbacks for refresh plots and data. Works fine, but IE show, in any callback, some status messages that they are presented and disappear quickly, it is an ugly effect -. I want to suppress those messages, or hide if it is possible. Thanks in advanced-
Posted to
ASP.NET AJAX UI
(Forum)
by
HarveyTriana
on 3/12/2008
Re: problem with date format in viewstate
Use DateTime.Today.Ticks So, you does not depends of time format.
Posted to
Getting Started
(Forum)
by
HarveyTriana
on 3/3/2008
Page 1 of 2 (20 items) 1
2
Next >
WindowsClient:
Build WPF Data Controls for Outlook Addins Easily with VS2010
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 2
Channel 9:
Channel 9 Live at PDC09: .Net Rocks Part 1
Channel 9:
Channel 9 Live at PDC09: Wei Zhu (Facebook)
WindowsClient:
WPF Manipulation Basics
ASP.NET:
High CPU in .NET app using a static Generic.Dictionary
TechNet Edge:
Deploying Silverlight - Why and How
WindowsClient:
Windows Client Developer Roundup for 12/21/2009
Silverlight:
4 Calendars & Plans for 2010 / 5770
ASP.NET:
ASP.NET MVC 2 and Visual Studio 2010
ASP.NET:
Moving your ASP.NET Application to Windows Azure – Part II
Silverlight:
HVP – Core Scaffolding and Updated News
Channel 9:
TWC9: 2009 - The Year in Review
ASP.NET:
Tip#100: Did you know… How to view ASP.NET trace information?
ASP.NET:
Passing anonymous objects to MVC views and accessing them using dynamic
Channel 9:
Channel 9 Live at PDC09: Coding 4 Fun
Channel 9:
Channel 9 Live at PDC09: Stephen Toub
WindowsClient:
Mouse Gestures for Internet Explorer
Channel 9:
Controlling concurrency in Rx
Channel 9:
Dev Tools Ecosystem Summit Videos Available
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online