Advanced Forum Search Results
-
the thing is that I dont know how to grab the userID or email of the user that logs in from the asp.net login page and also the filename from the silverlight project. If im able to grab these 2, i should be able to show these info in my "manageUsers.aspx" page.
-
maybe i need to rephrase my sentence..
I am using a Silverlight Upload
(http://silverlightfileupld.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=21485)
to allow users to upload their files. This work. But now I want to be able to
know which user upload which files. The main ASP.NET website is a seperate
project to the Silverlight ...
-
from the steps given, i still cant create a session between the 2 silverlight and asp.net page. my aspx does not come with a page_load. So im not sure where to put the init parameters.
-
correct me if im wrong..session is where they store the connection right?
-
correct me if im wrong..session is where they store the connection right?
-
so what do u mean by that? can i still see what the user did? as in if he ever uploads his files, will i still be able to know what files he has uploaded?
-
If you are redirecting from one ASP.NET page to one with SL content you could try this
On the ASP.NET page which is redirecting to the page with silverlight content:
protected void Page_Load(object sender, EventArgs e)
{
Session["test"] = "AAAAAAAAAAAAAAAA";
}
protected ...
-
here is the situation. I have FileUploadControl.xml which is the interface where i put my combobox.
<ComboBox Name="combobox1" Margin="71,2,20,3">
<ComboBoxItem ...
-
private void UploadFiles()
{
if (files.Count == 0)
...
-
void addFilesButton_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.Filter = ...