Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / December 2006

Tip: Looking for answers? Try searching our database.

Formview and objectdatasource with int values and null textboxes

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Pao - 30 Dec 2006 14:55 GMT
I use a formview control bounded to an objectdatasource to insert a
record.
So when I have some textboxes with no values, and the property of my
object is Int, it generates client side an error.
I tried to intercept some event like OnInserting, but the error gets
before.
How can I generate the textboxes in the insert template by putting a
"0" on integer fields, if I have
the Bind clause?
example:
[code]
         <td width="33%"><b>NumCiv: </b><asp:TextBox ID="txtNumCiv"
runat="server"
           Text='<%# Bind("NumCiv") %>'
Enabled="true"></asp:TextBox></td>
[/code]

If I can't, are there some other way to solve the problem?
thanks
Pao - 30 Dec 2006 15:14 GMT
I answer myself

protected void FormViewPS_PreRender(object sender, EventArgs e)
{

if (((FormView)sender).CurrentMode == FormViewMode.Insert)
{
TextBox txttmp = (TextBox )FormViewPS.Row.FindControl("textboxdata ");

if (txttmp.Text=="") txttmp.Text="0";
}
}

Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.