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:168611
More Search Options
RSS Available
Matching Posts
Re: Variable Scope
Yes. Private Members (Variable within a page) live the entire Page Cycle, which means you can assign any value and use them in other Sub's. However this variable will be destroyed when the page is served to the client browser.
Posted to
Getting Started
(Forum)
by
CarlosAg
on 8/26/2005
Re: Calling a Function Periodically
There is no such thing as a Timer control in asp.net since essentially what you really need is the browser to trigger an action. Having said that, the best way to achieve this behavior is using javascript and the window.setInterval method (or setTimeout). try this HTML: <html> <head> <script> function startTimer() { window.setInterval('doSomething()', 1000); } function doSomething() { message.innerHTML += "<br />Called"; } </script> </head> <body> <input
Posted to
Data Presentation Controls
(Forum)
by
CarlosAg
on 4/6/2005
Re: SetDisplayMode Not a Member of WebPartManager?????
That actually got changed in Beta 1 to be a property called DisplayMode. so you can change myPartManager.SetDisplayMode(WebPartDisplayMode.Design) to: myPartManager.DisplayMode = WebPartManager.DesignDisplayMode etc.. Carlos
Posted to
Web Parts and Personalization
(Forum)
by
CarlosAg
on 10/11/2004
Re: Master page problem with calendar control
Most likely is what Fredrik is suggesting, If you expect to see it in the Page_Load you will not see when the user change it, try using the LoadComplete for that. I tried this and it worked: MasterPage.master < %@ Master Language ="C#" ClassName ="MasterPage_Master" % > < script runat ="server" > public Calendar Calendar { get { return this .Calendar1 ; } } < / script > < html > < head /> < body > < form id ="form1" runat
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
CarlosAg
on 9/24/2004
Re: Web part not registered as safe - namespace
You might want to try posting your question at: http://communities.microsoft.com/newsgroups/default.asp?icp=SharePoint Choose Development on the left hand list.
Posted to
Web Parts and Personalization
(Forum)
by
CarlosAg
on 9/22/2004
Re: WebPart question
Also forgot to say that the way to switch between modes is using: WebPartManager.Personalization.ToggleScope() The way to know in which mode you currently are WebPartManager.Personalization.Scope So you could easily add a linkbutton that only shows if the user WebPartManager1.Personalization.CanEnterSharedScope and when clicking that one you can easily set the page in EditMode or DesignMode if (WebPartManager1.DisplayMode != WebPartManager.DesignDisplayeMode) { WebPartManager1.DisplayMode = WebPartManager
Posted to
Web Parts and Personalization
(Forum)
by
CarlosAg
on 9/21/2004
Re: WebPart question
The idea behind webparts (actually personalization) is that there are two "modes" Shared Mode or User Mode. 1) When you are in Shared Mode, you are essentially changing the view of all the users in your website, so for instance if you add/close/minimize/connect/etc a Webpart, all users will see that next time they refresh/load the page 2) When you are in User mode, any changes you make only apply to you and only you can see them. you can define which user/role can do any one of them in
Posted to
Web Parts and Personalization
(Forum)
by
CarlosAg
on 9/21/2004
Re: Grabbing content from another page
Just a friendly reminder that if you do this from the server side, do not forget to change the maxConnections attribute in the machine.config, unless you want to "semi-serialize" all your calls to the server. By default the http protocol states that only 2 connections should be open to the same server, and so this is the default in .net, but you can change it using the following section. < configuration > < system.net > < connectionManagement > < add address ="
Posted to
Web Parts and Personalization
(Forum)
by
CarlosAg
on 9/19/2004
Re: Webpart connections between two pages
Do you have specific scenarios for this that could be blocked without it? Could you give me more context on how/why would we need it? I do not think it will be available, but we will consider if primary scenarios are blocked. Thanks, Carlos
Posted to
Web Parts and Personalization
(Forum)
by
CarlosAg
on 9/14/2004
Re: Themes
You can specify a SkinID to your control in the Skin, and then only <asp:Image that have that SkinID property will use those settings.
Posted to
Master Pages, Themes and Navigation Controls
(Forum)
by
CarlosAg
on 9/13/2004
Page 1 of 28 (271 items) 1
2
3
4
5
Next >
...
Last »
Silverlight:
Polling Video – A Viable sub-second alternative?
TechNet Edge:
Windows Server 2008 R2 Quick Look #2 - Active Directory Recycle Bin
Channel 10:
I'm a Windows 7 PC Themes
Channel 10:
24 Years of Windows Box Art
WindowsClient:
Silverlight tutorial: HOW TO build CommandLink Control in Silverlight with Expression Blend 3 and Behaviors
ASP.NET:
Converting an RGB Color To Hex With JavaScript
Silverlight:
Silverlight HVP Design – Configuration & Scenarios
Channel 9:
Channel 9 Live at PDC09: Day 3 Welcome
Channel 9:
Channel 9 Live at PDC09: TWoC9 Day 3
Channel 10:
Microsoft's Mobicast: Stiched Cell Streams
Channel 10:
Festive Bing
TechNet Edge:
How Microsoft Reduces Operational Risk through Business Continuity Management
Channel 9:
Jeffrey Van Gogh and Bart De Smet: Inside System.Interactive
WindowsClient:
Runtime Fault Injection using TestAPI
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
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online