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:654328
More Search Options
RSS Available
Matching Posts
Re: Firefox rendering problem
I also have the same issue. Looks like ReportViewer is not compatible with FireFox. Some interesting links: http://msdn2.microsoft.com/en-us/library/ms251673(VS.80).aspx - MS basically says we support it, but not really http://weblogs.asp.net/jgalloway/archive/2006/09/01/SQL-Reporting-Services-_2D00_-CSS-fix-for-Firefox.aspx -- a fix for the "height issue" Eric
Posted to
SQL Server Reporting Services
(Forum)
by
ericpopivker
on 6/18/2007
Re: Auto Suggest Menu control
Hi Rick, Sorry for late response. I just release version 1.1 of the AutoSuggestMenu control. Before doing that I tested adding the control dynamically and inside UpdatePanel. Both should work. Try it out and let me know if you have any issues.
Posted to
Web Forms
(Forum)
by
ericpopivker
on 4/17/2007
Static variables in web application : CallContext vs. ThreadStatic vs. HttpContext
IIn my web application I would like to cache Context information per user request/session. First I implemented my UserContext.Current object using [ThreadStatic] like this: ======================================== public class UserContext { [ThreadStatic()] protected static XContext _currentContext; public static UserContext Current { get { if (_currentContext==null) _currentContext=new UserContext(); return _currentContext; } } =================================== It worked great in my debugging
Posted to
Web Forms
(Forum)
by
ericpopivker
on 3/6/2007
Re: Design mode stylesheet ASCX
I found that my problem was that absolute path (starting with ~ or /) was not working in Design Mode, so I converted it to relative and it worked. Here is what I did: ================================================================== public override String GetDesignTimeHtml() { HtmlTextWriter writer = new HtmlTextWriter(new StringWriter()); Control ctrl = (Control)this.Component; //Write CSS File string url = menu.ResourcesDir + "/Styles.css"; if (IsAbsolutePath(url)) url = GetRelativePath(url, control
Posted to
Custom Server Controls
(Forum)
by
ericpopivker
on 2/26/2007
Re: Custom stylesheet-Control (link-tag) not working in design-time - found solution
I found that my problem was that absolute path (starting with ~ or /) was not working in Design Mode, so I converted it to relative and it worked. Here is what I did: ================================================================== public override String GetDesignTimeHtml() { HtmlTextWriter writer = new HtmlTextWriter(new StringWriter()); Control ctrl = (Control)this.Component; //Write CSS File string url = menu.ResourcesDir + "/Styles.css"; if (IsAbsolutePath(url)) url = GetRelativePath(url, control
Posted to
Client Side Web Development
(Forum)
by
ericpopivker
on 2/26/2007
Re: Design mode stylesheet ASCX
Same problem here. In GetDesignTimeHtml I have code: writer.WriteLine("<link href=\"ControlStyles.css\" type=\"text/css\" rel=\"stylesheet\">"); writer.WriteLine("<div class=\"ControlStyle\">...</div>"); But the styles are not being picked up. Anyone knows of a solution/workaround?
Posted to
Custom Server Controls
(Forum)
by
ericpopivker
on 2/22/2007
Re: Custom stylesheet-Control (link-tag) not working in design-time
I am having exactly the same problem: In GetDesignTimeHtml I have code: writer.WriteLine("<link href=\"ControlStyles.css\" type=\"text/css\" rel=\"stylesheet\">"); writer.WriteLine("<div class=\"ControlStyle\">...</div>"); But the styles are not being picked up. Anyone knows of a solution/workaround?
Posted to
Client Side Web Development
(Forum)
by
ericpopivker
on 2/22/2007
Re: I really don't understand why Sys.Application.notifyScriptLoaded() is really need.
I would really like to get a good explanation about this from MS. When I see a requirement like this - it just smells too much of sloppy coding. There must be a REALLY good reason to require every JS file to end with specific function. Eric
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
ericpopivker
on 1/25/2007
Re: how to get which UpdatePanel has posted
Hi Eric, The better way would be if UpdatePanel.IsInPartialRendering would actually return the correct value. Unfortunately it doesn't work correctly and always seems to return false. Right now Cyril's and my code only returns the first UpdatePanel, but it should be pretty easy to modify our code to return a list of all panels being refreshed. Regards, Eric P
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
ericpopivker
on 12/22/2006
Re: how to get which UpdatePanel has posted
Thanks for the code, Cyril... There is one more case. UpdatePanel can be refreshed using a submit button or another control inside it. In that case you would need to use code like this: Control control=this.Page.FindControl(scriptManager.AsyncPostBackSourceElementID); while (control != null) { if (control is UpdatePanel) return (UpdatePanel)control; control = control.Parent; } return null; Regards, Eric
Posted to
ASP.NET AJAX Discussion and Suggestions
(Forum)
by
ericpopivker
on 12/22/2006
Page 1 of 3 (21 items) 1
2
3
Next >
TechNet Edge:
TechNet Radio: Community Corner with John Weston (Episode 1)
TechNet Edge:
Windows Firestarter Events (Part 3 of 5): IE8 - Browse the Web in Style!
WindowsClient:
The year ahead, 2010.
TechNet Edge:
FOPE Policies Deep Dive Interview
Silverlight:
Silverlight HVP Design Update
WindowsClient:
Windows Client Developer Roundup for 12/28/2009
WindowsClient:
Snoop with 64 bit support
ASP.NET:
jQuery Hide/Close Link
ASP.NET:
Merry Christmas
TechNet Edge:
FPE Customer Story
Silverlight:
Being a writer, and having an editor. A Short Rant.
Channel 9:
Channel 9 Live at PDC09: Dr Brian Brooks (3M)
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 13 of 13
Silverlight:
Information for Silverlight HVP Developers…
WindowsClient:
Custom Content Loaders in Silverlight 4.0
WindowsClient:
MVVM Links\Info
TechNet Edge:
Check out how Dolly Parton uses IE8 and Web slices!!!
Silverlight:
A Silverlight HVP Update
Channel 9:
Channel 9 Live at PDC09: This Week on Channel 9 - PDC09 Daily Show Edition Day 1
Channel 9:
Maria Klawe: Scholar, Scientist and Microsoft Board Member
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online