SOLUTION: Deploying web apps without overwriting config values
Sat, 4 Oct 2008 10:04:23 -0500
As I have seen this question in a few different forums lately, I posted a
new entry to my blog about how to deploy to a web server without overwriting
config values:
http://gregorybeamer.spaces.live.com/blog/cns!B036196EAF9B34A8!923.entry
There are other kludgy ways I have seen, but this one works the best, ...
|
Access denied due to security settings for intranet
Sat, 4 Oct 2008 13:06:05 +0200
I have created a virtual directory. When I type in
http://localhost/myProject/test.html I get access denied with the
explanaition that intranet settings are turned off as standard. I´ve been
browsning around in the settings but I couldn´t find any suitable setting to
change. The exact error message is:
"htt ...
|
Get Time Difference
Sat, 4 Oct 2008 03:33:47 -0700 (PDT)
A Form has 2 TextBoxes where in users enter date & time. Example (in
mm/dd/yyyy format):
09/20/2008 17:54 (1st TextBox)
09/29/2008 6:13 (2nd TextBox)
How do I find out how much time (in hours & minutes) has elapsed
between the 2 datetime values? I need the exact time difference.
Thanks. ...
|
problem while inheriting a UserControl base
Fri, 3 Oct 2008 16:32:08 -0700 (PDT)
hello,
i am working on a web application w/ UserControls. some of my controls
use the same functionality (an Event they all raise) so it seemed
sensible to place them into a custom base class, and have my
UserControls inherit it.
problem is, when i do this the im no longer able to raise the event in
derivi ...
|
Migrating from 1.1 to 3.5 (Multiple Framework Versions running in Parallel)
Fri, 3 Oct 2008 16:07:46 -0700
I will soon migrate several Web sites on our production server from .NET 1.1
to 3.5.
The plan is to install the .NET Framework 3.5 on our existing production
server. This means the server would have 1.1 and 3.5 installed and running
in parallel.
My plan is to migrate one Web site at a time (create new NT ...
|
ProfileCommon
Fri, 3 Oct 2008 15:01:27 -0700 (PDT)
Hello,
I am trying to get the profile of a user that is not authenticated. I
have the following:
ProfileCommon pc = Profile.GetProfile(username)
However ProfileCommon is not recognized
I have "using System.Web.Profile;" but I am not able to make this
work!
Could someone, please, help me out?
Than ...
|
'Image' does not contain a definition for 'ImageUrl'
Fri, 3 Oct 2008 23:15:28 +0200
hi
asp.net 2.0
I get this compile error:
'Image' does not contain a definition for 'ImageUrl'
Image image = (Image)e.Item.FindControl("img");
image.ImageUrl = "~/image.png";
the compile error is on the second line above. This is strange. This used to
compile without problem. But it started after I ha ...
|
|
|
Edit Profile
Fri, 3 Oct 2008 13:24:47 -0700 (PDT)
Hello,
How can I edit the profile of a non authenticated user?
I want to edit profiles, as administrator, of users.
Thanks,
Miguel ...
|
adding edit button to datagrid problem
Fri, 3 Oct 2008 10:51:09 -0700 (PDT)
I had a successfully deployed datagrid reading an XML file and
showing the data:
Private Function MakeDataView() as DataView
Dim myDataSet As New DataSet()
myDataSet.ReadXml(Server.MapPath("TimberSales.xml"))
Dim view As DataView = New DataView(myDataSet.Tables(0))
view.Al ...
|
Closing the currently active window
Fri, 3 Oct 2008 12:46:11 -0500
Hi,
I popupped a new asp.net window. Within it I want to display an explicit
close button. How .Net object can I call to close this popup window
programmatically?
King
...
|