Search Results

0
votes
2answers
2k views

Why does a WPF BitmapImage object not download an image from a Uri Source in ASP.Net Web Forms?

I'm trying to accomplish the following in ASP.Net: Create a WPF Canvas control Spin up a WPF Image control and a BitmapImage object Set the BitmapImage source to a U …
0
votes

ASP.NET Custom Controls - Composites

You might be able to make use of this technique to make design-time easier: …
1
vote

What is the difference between the <%# and <%= opening tags?

<%= is shorthand for Response.Write(). <%# indicates that you're working with the data container in a data bound control. …
0
votes

How to access UserId in ASP.NET Membership without using Membership.GetUser() ?

You have two options here: 1) Use username as the primary key for your user data table i.e: select * from [dbo.User] where Username = 'andrew.myhre' 2) Add …