473,699 Members | 2,838 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VB.NET -Web App: Problems Updating Datagrid

23 New Member
hi all..
I am trying to update my datagrid in my webform...but its not getting updated..though in the database it removing the <null> and inserting a blank field....its not taking the input which m typing...can sombody plz help me out in this..i need help urgently
I am posting the code in vb.net for the webform as well as html
Expand|Select|Wrap|Line Numbers
  1. Protected Sub DataGrid1_UpdateCommand(ByVal source As Object, ByVal e As System.Web.UI.WebControls.DataGridCommandEventArgs) Handles DataGrid1.UpdateCommand
  2.         Dim Stocksent1 As TextBox = CType(e.Item.FindControl("TextBox2"), TextBox)
  3.         Dim Signed1 As TextBox = CType(e.Item.FindControl("SignedTextBox"), TextBox)
  4.         Dim Items1 As String = DataGrid1.DataKeys(e.Item.ItemIndex).ToString()
  5.         Dim myConnection As New SqlConnection("Server=SERVER;uid=sa;pwd=;Database=Central")
  6.         myConnection.Open()
  7.  
  8.         myCommand1 = New SqlCommand("Update Table3 set Stocksent='" & Stocksent1.Text & "', Signedby='" & Signed1.Text & "' , Flag=0, Sentdate=getdate() where Items='" & Items1 & "' ", myConnection)
  9.         'myCommand1.Parameters.Add("@Items", SqlDbType.NVarChar).Value = Items
  10.         'myCommand1.Parameters.Add("@Stocksent1", SqlDbType.NVarChar).Value = Stocksent1.Text
  11.         'myCommand1.Parameters.Add("@Signedby1", SqlDbType.NVarChar).Value = Signed1.Text
  12.         ra = myCommand1.ExecuteNonQuery()
  13.         myConnection.Close()
  14.         Response.Write("Records Updated")
  15.         DataGrid1.EditItemIndex = -1
  16.         DataGrid1.DataBind()
  17.         DataGrid1.Columns(8).Visible = False
  18.         DataGrid1.Columns(9).Visible = False
  19.         DataGrid1.Columns(10).Visible = False
  20.         DataGrid1.Columns(11).Visible = False
  21.         DataGrid1.Columns(12).Visible = False
  22.  
  23.     End Sub
  24.  
HTML CODE
Expand|Select|Wrap|Line Numbers
  1. <form id="Form1" method="post" runat="server">
  2.             <asp:datagrid id="DataGrid1" style="Z-INDEX: 101; LEFT: 64px; POSITION: absolute; TOP: 296px"
  3.                 runat="server" AutoGenerateColumns="False" DataKeyField="Items" Width="848px" ForeColor="DimGray"
  4.                 BackColor="Wheat" BorderColor="#660033" Height="72px">
  5.                 <HeaderStyle Font-Bold="True" ForeColor="Chocolate" BackColor="LightGray"></HeaderStyle>
  6.                 <Columns>
  7.                     <asp:BoundColumn DataField="Lognumm" ReadOnly="True" HeaderText="Lognumm"></asp:BoundColumn>
  8.                     <asp:BoundColumn DataField="Requestdate" ReadOnly="True" HeaderText="Requestdate"></asp:BoundColumn>
  9.                     <asp:BoundColumn DataField="Hospital" ReadOnly="True" HeaderText="Hospital"></asp:BoundColumn>
  10.                     <asp:BoundColumn DataField="Items" ReadOnly="True" HeaderText="Items"></asp:BoundColumn>
  11.                     <asp:BoundColumn DataField="Currentstock" ReadOnly="True" HeaderText="Currentstock"></asp:BoundColumn>
  12.                     <asp:BoundColumn DataField="Stockrequest" ReadOnly="True" HeaderText="Stockrequest"></asp:BoundColumn>
  13.                     <asp:BoundColumn DataField="Priority" ReadOnly="True" HeaderText="Priority"></asp:BoundColumn>
  14.                     <asp:BoundColumn DataField="Comment" ReadOnly="True" HeaderText="Comment"></asp:BoundColumn>
  15.                     <asp:TemplateColumn Visible="False" HeaderText="Stocksent">
  16.                         <ItemTemplate>
  17.                             <asp:Label id=Label2 runat="server" Text='<%# DataBinder.Eval (Container.DataItem , "Stocksent") %>'>
  18.                             </asp:Label>
  19.                         </ItemTemplate>
  20.                         <EditItemTemplate>
  21.                             <asp:TextBox id=TextBox2 runat="server" Text='<%# DataBinder.Eval(Container.DataItem , "Stocksent") %>'>
  22.                             </asp:TextBox>
  23.                             <asp:RequiredFieldValidator id="RequiredFieldValidator1" runat="server" ErrorMessage="Enter value" ControlToValidate="TextBox2"></asp:RequiredFieldValidator>
  24.                         </EditItemTemplate>
  25.                     </asp:TemplateColumn>
  26.                     <asp:TemplateColumn Visible="False" HeaderText="Signedby">
  27.                         <ItemTemplate>
  28.                             <asp:Label id=Label1 runat="server" NAME="Label1" Text='<%# DataBinder.Eval(Container, "DataItem.Signedby") %>'>
  29.                             </asp:Label>
  30.                         </ItemTemplate>
  31.                         <EditItemTemplate>
  32.                             <asp:TextBox id=SignedTextBox runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Signedby") %>'>
  33.                             </asp:TextBox>
  34.                             <asp:RequiredFieldValidator id="RequiredFieldValidator2" runat="server" Width="128px" ErrorMessage="Enter Value"
  35.                                 ControlToValidate="SignedTextBox"></asp:RequiredFieldValidator>
  36.                         </EditItemTemplate>
  37.                     </asp:TemplateColumn>
  38.                     <asp:TemplateColumn Visible="False" HeaderText="Takenby">
  39.                         <ItemTemplate>
  40.                             <asp:Label id="Label3" runat="server"></asp:Label>
  41.                         </ItemTemplate>
  42.                         <EditItemTemplate>
  43.                             <asp:TextBox id="TextBox1" runat="server"></asp:TextBox>
  44.                             <asp:RequiredFieldValidator id="RequiredFieldValidator3" runat="server" ErrorMessage="Enter Value" ControlToValidate="TextBox1"></asp:RequiredFieldValidator>
  45.                         </EditItemTemplate>
  46.                     </asp:TemplateColumn>
  47.                     <asp:TemplateColumn Visible="False" HeaderText="Comments">
  48.                         <ItemTemplate>
  49.                             <asp:Label runat="server"></asp:Label>
  50.                         </ItemTemplate>
  51.                         <EditItemTemplate>
  52.                             <asp:TextBox runat="server"></asp:TextBox>
  53.                         </EditItemTemplate>
  54.                     </asp:TemplateColumn>
  55.                     <asp:TemplateColumn HeaderText="Edit">
  56.                         <ItemTemplate>
  57.                             <asp:LinkButton runat="server" CausesValidation="false" CommandName="Edit" Text="Edit" ID="Linkbutton1"></asp:LinkButton>
  58.                         </ItemTemplate>
  59.                         <EditItemTemplate>
  60.                             <asp:LinkButton runat="server" CommandName="Update" Text="Update" ID="Linkbutton2"></asp:LinkButton>
  61.                             <asp:LinkButton runat="server" CausesValidation="false" CommandName="Cancel" Text="Cancel" ID="Linkbutton3"></asp:LinkButton>
  62.                         </EditItemTemplate>
  63.                     </asp:TemplateColumn>
  64.                 </Columns>
  65.             </asp:datagrid>
Nov 15 '07
23 1947
tanya2001
23 New Member
Good work!
Feel free to ask for help any time :)

hi there i have a new query...jts go 2 this link n help me out plzzz

http://www.thescripts. com/forum/showthread.php? p=2943265#post2 943265
Nov 20 '07 #21
Frinavale
9,735 Recognized Expert Moderator Expert
hi there i have a new query...jts go 2 this link n help me out plzzz

http://www.thescripts. com/forum/showthread.php? p=2943265#post2 943265
Sorry Tanya,
I have never used crystal reports in my life...can't help you on that one.
Nov 20 '07 #22
tanya2001
23 New Member
Sorry Tanya,
I have never used crystal reports in my life...can't help you on that one.

hi
can u tell me if i can just add the values from a column based on 2 conditions and display d values in a different table?
Nov 26 '07 #23
Frinavale
9,735 Recognized Expert Moderator Expert
hi
can u tell me if i can just add the values from a column based on 2 conditions and display d values in a different table?
What kind of table are you talking about?
Nov 26 '07 #24

Sign in to post your reply or Sign up for a free account.

Similar topics

1
1178
by: Brett Hargreaves | last post by:
I'm having a major problems with Datagrid and the update command. Basically when I enter into edit mode in my data grid then set a new value, the update command is not picking up the new value. So, if the original value is 10, and I change it to 20 the txtFieldName.Text field still thinks it has the old value of 10 in it. Anyone any ideas why!!! Cheers Brett
2
2335
by: Tomas Vera | last post by:
Hello All, I'm having problems creating a page with dynamic checkboxes in a WebApp. In my app, I need to query a database, then (based on results) add checkboxes to my form and set their "Checked" state. Since the controls are dynamically created, I'm using the OnInit event to create the checkboxes and set the "Checked" state from the DB. Next, I want to capture the postback event (AutoPostBack=true) and update my database based on...
1
1505
by: Jim McDermott | last post by:
A client I provide lan support to posed a web app question I'm not qualified to answer.... They build OEM mechanisms to order from an assortment of stock parts - I know this is a stretch, but kind of like autos. You pick a base model, then make a engine selection, then select color, etc. Of course, each subsequent choice is predicated on the previous choice, narrowing and defining the item as you go. Tables of validated choices...
3
1625
by: Martin | last post by:
I am a .Net newbie. I have Visual Studio.Net 2003 and have the luxury of being able to do some R&D/learning in a non-production environment. I want to develop a web application that will get the data that it serves out from two sources: (1) a database (probably MS Access but could be SQL Server) and (2) directly from another application running on the same machine. (BTW, this is on an intranet - the server will be dedicated to these apps...
0
908
by: mjc9885 | last post by:
Hope someone can help me out with this. I made some minor modifications to some underlying VB code for a web app -- no changes to any .aspx pages were required. I then deployed the changes to a test environment and everything worked fine. I used XCopy method to do this -- Copied the project to a localhost directory, then copied the dll's from there to the test environment. Like I said, after that the changes were visible in the test...
5
4715
by: terryc | last post by:
Hi Guys I've set up a web app on my machine using IIS and XP Pro. I can access the site using my machine (http://localhost/appName) no problems, but when I try and access this app using another machine over the network (http://192.XXX.X.X/appName) it just times out. Any ideas what the problem would be? I've just changed machine, previous to this I was running windows 2000 and I could access the app over the network with no problems. ...
4
1576
by: Andrew Robinson | last post by:
I am working on a system system that requires optimistic concurrency within a web app. At first I thought this would be easy. We generate our own entities and dal/service layer but I now see that working with controls like a grid view pose some very complicated issues. If I am using rowversion, when do I start the "clock"? When I first display the label version of a field? when I display the data within a textbox for edit or when I read...
3
1335
by: tanya2001 | last post by:
hi m bac 2 trouble u agn can u tell me how do i update a datagrid which has got a datagrid which is displayed on a button click and thn it tht datagrid thr's a link which has 2 be updated...wen m clicking edit on the datagrid nothing is returning back...what shud i give in the page post back event?i cant give d code for datagrid coz tht shud b displayed only when a button is clicked...wwhat do i do
2
1186
by: CMoya | last post by:
Can anyone point to an article or blog that describes the *functional* differences between a "Web Application" and a "Web Site" in VS2008.... caveats, gotchas? I'm aware of the compile differences as it was in VS2005 (one dll, vs multiple), but is there anything else to keep in mind? Like some things that might work in one but not the other?
0
9171
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8880
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7743
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5869
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4373
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4625
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2342
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2008
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.