Moshe Eshel

The eye in the sky - just fell down

  Home  |   Contact  |   Syndication    |   Login
  69 Posts | 0 Stories | 5 Comments | 57 Trackbacks

News

Welcome to my blog, I hope to have here some interesting content for you all to read. However, I'm just starting out in this, so be patient with me.

Article Categories

Archives

Post Categories

Blogroll

News Sites

Go Here to read the questions:

http://www.hanselman.com/blog/WhatAGreatNETDevelopersOughtToKnowMoreNETInterviewQuestions.aspx

It's interesting, as I've mentioned my team is slowly gearing up to the move to .NET - currently in more outer channels - a little hiring and some consulting to be able to establish time lines... I'm very eager for this move, and am always on the lookout for more .NET knowledge.

Its hard to learn new technology without the hands-n experience, I've got no shortage of tools, only shortage of time - no time to experiment, last time I've built a .NET project was two years ago (some web services in C#), I loved it, although it gave me a hard time (interoping with an old Java SOAP engine) - plumbing and formatting, but the programming itself was such a good experience, and because of the problems encountered which were to do with how .NET was receiving/generating the XML I got to understand some internal stuff, and to deal with the serializer a bit, from which I learned a lot. Nowadays I am swamped with work on work hours, and try to spend as much time as possible with my girlfriend and friends - who aren't really into computers at all, so we don't do pet projects for fun. besides whenever I think of something I need, someone already did it before me... So why do it again.

Anyway, the reasons I'm printing Scott's list right now, are:
a. I want to know the answers, so I can see here were I need to focus my learning
b. We are hiring and looking in particular for ASP.NET developers (preferably with some experience in VB and classic ASP) - since we don't know .NET that good, we can ask pointed questions based on the list (which means my manager is getting a copy :-) so that he can get us good people...). Oh, if you are a good .NET developer, Live Israel and looking for a job, you can send your resume to me...
meshel@gmail.com

posted on Tuesday, February 22, 2005 9:36 AM

Feedback

# re: Great Post by Scot Hansleman - Interview Questions for .NET Developers 2/22/2005 10:07 AM Scott Hanselman
I'm glad you like it! (It's actually HanSELman, not HanSLEman.)

Thanks!

# re: Great Post by Scot Hanselman - Interview Questions for .NET Developers 2/22/2005 10:26 AM Moshe Eshel
What are you doing awake at this time... Thanks for noticing one of many linkers!

# re: Great Post by Scot Hanselman - Interview Questions for .NET Developers 7/20/2005 4:53 AM Raja
www.geocities.com/dotnetinterviews/

Has complete free ebook for dot net interview questions.

# re: Great Post by Scot Hanselman - Interview Questions for .NET Developers 10/4/2007 1:22 AM krishna
I would like to fire a file field event by clicking on another button .
so for that what i have done is i have taken a button and placed it in the form and a file field set visibility to false.so now what i want to do is on clicking on the button i should be able to fire file field.
So this is how i have done it---

<script language="javascript" type="text/javascript">
function setHiddenValue()
{
document.getElementById("TextBox1").value = document.getElementById("File1").value;
}

</script>

<button id="Button2" onclick="document.getElementById('File1').click();" type="button" runat="server">Upload</button>


<INPUT id="File1" type="file" name="File1" runat="server" onchange="setHiddenValue()">

<asp:button id="Button1" runat="server" Text="Submit"></asp:button>


so now i have fired it successfully what i want to do is retrieve the value that is stored in the TextBox1 and print it.

Now the problem is i am not able to fire submit button event .It is firing only if its clicked twice.

So why is this happenening and if there is any solution to rectify this problem please suggest me (i should be able to fire submit button events by clicking once only)

Thanks.
Vamsi.

Post Feedback

Title:
Name:
Email: (never displayed)
Url:
Comments: