0
votes
asp.net inline versus codebehind which do you use and why?
Personal preference
Definitely. With a large pinch of "level of tolerance for noise".
Jeff recently …
1
vote
Is it OK to go from Hashed to Encrypted password type in an ASP.NET membership provider?
if I change the password type to Encrypted?
Why?
Hashed is safer (password recovery: generate a new password and send that).
The only reason I c …
1
vote
ASP.Net 3.5 SP1 Machine Key decryption algorithm auto
On a side note, which algorithm are most people using nowadays AES, 3DES, SHA1, etc?
Certainly new applications should avoid 3DES in favour of AES for symmetric …
0
votes
Closing an IE ‘popup’ window with script.
I believe not. As you state to help prevent malware.
In the end the browser does not know that you are not evil. See RFC 3514 for a similar idea.
…
0
votes
ASP.net -2147467259 (0x80004005) error
0x80004005 is the COM error code E_FAIL "Unspecified error". So some COM method call failed.
Time to find a re-create and then use divide and conquer to find where this is happening.
…
-1
votes
Is it possible to use SmtpClient.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory on Development Server?
All versions of Windows (NT, since NT4) have IIS as an option. So you can run you development with a copy of IIS installed on your development system.
…
0
votes
IE7: tricks/plugins for seeing all the html on a page?
Some ideas:
Firebug Lite
Use IE8 (with its developer tools) in compatibility mode.
MS created a develope …
0
votes
Regional settings IIS6 and ASP.Net 2 - {0:c} returning too many decimals in gridview
MSDN shows a capital C for currency, not lower case.
(Formatting specifiers are case sensitive.)
Update: Now test things here.
Code:
class Pro …
0
votes
How do I give an ASP.Net custom control a new custom event
You may be mixing up the methods that raise the events and the events themselves.
Control.OnClick is a method that raises the Control.Click event. In subclasses ov …
0
votes
Linq To Objects Auto Increment Number
I don't know if this is possible in VB, but in C# one uses a closure:
int count = 0
var res = from x in MasterCalendarInstance
order by x.Key
select new {
…
0
votes
how to retrive values from 100 Textbox using loops
If you don't want to depend on server controls you can use the Request.Form collection.
However you will need to use the control ids to tell whether it is a text box, using the question's i …
1
vote
Is SSL set on a per machine or per connection basis
The choice on using SSL us made on a per connection level, usually determined by the IP port being used (i.e. will be set up between client and server before any application code involved).
…
0
votes
How to have multiple logins with ASP.Net?
If you can run as two different IIS applications then you can have different authentication providers (or different instances of the same provider... possibly using the same database with the appli …
1
vote
How can i find out what version of IIS i need to deploy ASP.NET+VB App?
IIS 6 is the minimum for recent .NET versions (i.e. Windows 2003) because Win2000 is not supported (considering server only here).
The Windows version will tell you the IIS version:
…
2
votes
Checking Download size before download
Make a HEAD (rather than GET or POST) request to just get the response headers, this should include the content-length header with the information you need.
…
