Click here to Skip to main content
15,915,086 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Select query from datetime field Pin
Rhys Gravell8-Nov-10 4:36
professionalRhys Gravell8-Nov-10 4:36 
GeneralRe: Select query from datetime field [modified] Pin
treuveni8-Nov-10 8:56
treuveni8-Nov-10 8:56 
GeneralRe: Select query from datetime field Pin
treuveni8-Nov-10 21:11
treuveni8-Nov-10 21:11 
GeneralRe: Select query from datetime field Pin
Rhys Gravell8-Nov-10 21:18
professionalRhys Gravell8-Nov-10 21:18 
GeneralRe: Select query from datetime field Pin
treuveni9-Nov-10 3:15
treuveni9-Nov-10 3:15 
GeneralRe: Select query from datetime field Pin
Rhys Gravell9-Nov-10 3:34
professionalRhys Gravell9-Nov-10 3:34 
GeneralRe: Select query from datetime field Pin
treuveni9-Nov-10 3:51
treuveni9-Nov-10 3:51 
QuestionView and textbox Pin
future38396-Nov-10 15:40
future38396-Nov-10 15:40 
Hey, I write an view and when I try to run my page, running with error.
its my code
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>

<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server">
	InsertUpdatePerson
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">

    <h2>InsertUpdatePerson</h2>
    <div id = "leftside">
        <%using (Html.BeginForm())
          { %>
            <div>
                <fieldset>
                    <div class="editor-label">
                        <label for= "Fname">FirstName:</label>
                    </div>
                    <div class="editor-field-textbox">
                        <!--textboxname,value,create attribute for textbox!-->
                        <%Html.TextBox("Fname",null, new{@class= "Form_TextBox"})%>                        
                    </div>
                    
                    <div class="editor-label">
                        <label for="Sname">LastName:</label>
                    </div>
                    <div class= "editor-field-textbox">
                        <%Html.TextBox("Sname",null, new{@class= "Form_TextBox"})%>
                    </div>
                    
                    <div class="editor-label">
                        <label for= "Gender">Gender:</label>
                    </div>
                    <div class="editor-field-textbox">
                        <!--textboxname,value,create attribute for textbox!-->
                        <%Html.DropDownList()%>
                    </div>
                    
                    
                </fieldset>
            </div>            
          <%} %>
    </div>

</asp:Content>




and its the error
Line 18:                     <div class="editor-field-textbox">
Line 19:                         <!--textboxname,value,create attribute for textbox!-->
Line 20:                         <%Html.TextBox("Fname",null, new{@class= "Form_TextBox"})%>                        
Line 21:                     </div>
Line 22:               


Error is line 20
I am just following an sample job.what could be the problem?
AnswerRe: View and textbox Pin
Eddy Vluggen8-Nov-10 9:02
professionalEddy Vluggen8-Nov-10 9:02 
QuestionMVC and Dropdownliast Pin
future38396-Nov-10 15:17
future38396-Nov-10 15:17 
AnswerRe: MVC and Dropdownliast Pin
TweakBird9-Nov-10 7:21
TweakBird9-Nov-10 7:21 
QuestionAsp.Net Rendering Option Pin
JayKhatri6-Nov-10 9:36
JayKhatri6-Nov-10 9:36 
AnswerRe: Asp.Net Rendering Option Pin
_Erik_6-Nov-10 10:06
_Erik_6-Nov-10 10:06 
QuestionOnClientClick javascript parameter [modified] Pin
C#Coudou5-Nov-10 21:27
C#Coudou5-Nov-10 21:27 
AnswerRe: OnClientClick javascript parameter Pin
Parwej Ahamad6-Nov-10 9:03
professionalParwej Ahamad6-Nov-10 9:03 
GeneralRe: OnClientClick javascript parameter [modified] Pin
C#Coudou7-Nov-10 13:04
C#Coudou7-Nov-10 13:04 
GeneralRe: OnClientClick javascript parameter Pin
C#Coudou7-Nov-10 14:29
C#Coudou7-Nov-10 14:29 
Questionprint a page on windows mobile Pin
behzadcp4-Nov-10 7:15
professionalbehzadcp4-Nov-10 7:15 
AnswerRe: print a page on windows mobile Pin
NeverHeardOfMe4-Nov-10 7:36
NeverHeardOfMe4-Nov-10 7:36 
QuestionCan't see coded web performance test in VS 2010 Pin
jboyd1114-Nov-10 6:12
jboyd1114-Nov-10 6:12 
AnswerRe: Can't see coded web performance test in VS 2010 Pin
jboyd1114-Nov-10 6:36
jboyd1114-Nov-10 6:36 
GeneralRe: Can't see coded web performance test in VS 2010 Pin
NeverHeardOfMe4-Nov-10 6:46
NeverHeardOfMe4-Nov-10 6:46 
GeneralRe: Can't see coded web performance test in VS 2010 Pin
jboyd1114-Nov-10 9:41
jboyd1114-Nov-10 9:41 
QuestionViewstate Error Pin
treuveni4-Nov-10 1:23
treuveni4-Nov-10 1:23 
AnswerRe: Viewstate Error Pin
Keith Barrow4-Nov-10 1:29
professionalKeith Barrow4-Nov-10 1:29 

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.