Click here to Skip to main content
15,878,814 members

Rei Miyasaka - Professional Profile



Summary

    Blog RSS
16,724
Author
1,135
Authority
1,069
Debator
19
Enquirer
101
Organiser
1,059
Participant
0
Editor
The cows are here to take me home now...

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
GeneralDid they mix up .NET 3.0 and 2.0 in the Vista EULA? Pin
Rei Miyasaka25-Oct-06 19:21
Rei Miyasaka25-Oct-06 19:21 
GeneralLonghorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Rei Miyasaka9-Oct-06 23:08
Rei Miyasaka9-Oct-06 23:08 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Daniel Grunwald10-Oct-06 8:47
Daniel Grunwald10-Oct-06 8:47 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment [modified] Pin
Rei Miyasaka10-Oct-06 9:25
Rei Miyasaka10-Oct-06 9:25 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Daniel Grunwald11-Oct-06 4:04
Daniel Grunwald11-Oct-06 4:04 
GeneralRe: Longhorn Server Core can't do .NET: a disheartening "I told you so" moment Pin
Rei Miyasaka11-Oct-06 5:23
Rei Miyasaka11-Oct-06 5:23 
GeneralReplying to Jason Pin
Rei Miyasaka25-Sep-06 11:11
Rei Miyasaka25-Sep-06 11:11 
GeneralJason Zander replies Pin
Rei Miyasaka25-Sep-06 11:10
Rei Miyasaka25-Sep-06 11:10 
GeneralEmail to Microsoft Pin
Rei Miyasaka25-Sep-06 11:03
Rei Miyasaka25-Sep-06 11:03 
GeneralReverse WinFX Chronology [modified] Pin
Rei Miyasaka25-Sep-06 10:51
Rei Miyasaka25-Sep-06 10:51 
QuestionRe: MiniHttpd Pin
Dan Essin15-Dec-06 13:22
Dan Essin15-Dec-06 13:22 
AnswerRe: MiniHttpd Pin
Rei Miyasaka15-Dec-06 13:59
Rei Miyasaka15-Dec-06 13:59 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 8:02
Dan Essin18-Dec-06 8:02 
GeneralRe: MiniHttpd Pin
Rei Miyasaka18-Dec-06 12:11
Rei Miyasaka18-Dec-06 12:11 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 12:43
Dan Essin18-Dec-06 12:43 
GeneralRe: MiniHttpd Pin
Rei Miyasaka18-Dec-06 13:22
Rei Miyasaka18-Dec-06 13:22 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 13:27
Dan Essin18-Dec-06 13:27 
GeneralRe: MiniHttpd Pin
Rei Miyasaka18-Dec-06 13:36
Rei Miyasaka18-Dec-06 13:36 
GeneralRe: MiniHttpd Pin
Dan Essin21-Dec-06 8:29
Dan Essin21-Dec-06 8:29 
I tried mailing you at hotmail but it bounced twice.

I simply cannot get the aspx part to work. This is what I tried to send before:
I'm a little confused about how to make the aspx server work.
I've created an asp web app that just displays some text. It works fine if I run it in debug mode within VS.

I've created a virtual directory and pointed it to the location of the aspx file and I've created a directory and dragged the apsx, web.config and .dll files into it.

Neither runs the page.

in the code:
protected override void SendFileOrIndex(HttpRequest request, IResource resource)
{
for(IResource current = resource; current != null; current = current.Parent)
{
if(current is AspxAppDirectory)
{
AspxAppDirectory app = current as AspxAppDirectory;
if(resource is DriveFile)
{

current is never and AspxAppDirectory

also there is an error on the default constructor for AspxAppDirectory. It does not call this(port) therefore the cascade of constructors is never invoked and the default.aspx never gets added to the list of default pages.

This means that even if current was an AspxAppDirectory, the default behavior part would never get invoked.

Some guidance would be greatly appreciated

Dan
GeneralRe: MiniHttpd Pin
Dan Essin21-Dec-06 11:52
Dan Essin21-Dec-06 11:52 
GeneralRe: MiniHttpd Pin
Rei Miyasaka22-Dec-06 7:48
Rei Miyasaka22-Dec-06 7:48 
GeneralRe: MiniHttpd Pin
Rei Miyasaka22-Dec-06 7:49
Rei Miyasaka22-Dec-06 7:49 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 12:52
Dan Essin18-Dec-06 12:52 
GeneralRe: MiniHttpd Pin
Dan Essin18-Dec-06 12:56
Dan Essin18-Dec-06 12:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.