| bio | website | |
|---|---|---|
| location | Oklahoma City, OK | |
| age | 31 | |
| visits | member for | 3 years, 11 months |
| seen | Mar 14 at 19:46 | |
| stats | profile views | 22 |
|
Oct 15 |
awarded | Popular Question |
|
Oct 9 |
awarded | Popular Question |
|
Jun 10 |
awarded | Notable Question |
|
Apr 28 |
awarded | Self-Learner |
|
Dec 6 |
awarded | Popular Question |
|
Nov 10 |
awarded | Notable Question |
|
Aug 10 |
accepted | Silverlight: Get Element in DataTemplate by Name |
|
Aug 10 |
accepted | Silverlight Scrolling Tab Control |
|
Jun 10 |
answered | Silverlight: Get Element in DataTemplate by Name |
|
Jun 9 |
comment |
Silverlight: Get Element in DataTemplate by Name Jason - I tried that and I couldn't get it to work. I am guessing the datacontext for the cell is not the same as the datacontext for the row. Do you have an example you can get to work? |
|
Jun 9 |
comment |
Silverlight: Get Element in DataTemplate by Name I'll give it a shot. Thanks for the idea. I did find the answer to my question it's actually in my code but I can't post my answer for another 7 hours because of lack of rep point. Blah. Short answer is var hyperlinkButton = context.CellTemplate.LoadContent() as HyperlinkButton; |
|
Jun 9 |
comment |
Silverlight 4 Get Current User Sorry for the late reply. The simple solution is to just turn on pass through authentication for your IIS site. Then in the default.aspx (or what asp page launches your application) to put the user in the InitParams like this and read them in the mainpage.xaml.cs: System.Text.StringBuilder sb = new System.Text.StringBuilder(); sb.Append("<param name=\"InitParams\" value=\""); sb.AppendFormat("{0}={1},", KEY_USER_IDENTITY, HttpContext.Current.User.Identity.Name); sb.Append("\" />"); InitParams.Text = sb.ToString() |
|
Jun 9 |
accepted | Silverlight 4 Get Current User |
|
Jun 9 |
asked | Silverlight: Get Element in DataTemplate by Name |
|
Apr 8 |
awarded | Popular Question |
|
Feb 13 |
awarded | Tumbleweed |
|
Feb 6 |
asked | Silverlight Scrolling Tab Control |
|
Nov 6 |
answered | Visual Studio Designer broken using Expression Blend SDK Behavior |
|
Aug 12 |
comment |
Silverlight 4 Get Current User How would I do this if a user is hitting the application from a url? For example, myapplication/mytestpage.html. Are you suggesting passing a parameter as a query string on the example above? So it would be myapplication/mytestpage.html?user=NewUser ?? |
|
Aug 12 |
asked | Silverlight 4 Get Current User |