473,748 Members | 8,367 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 1956
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
1181
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
2338
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
1506
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
1628
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
911
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
4718
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
1579
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
1336
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
1190
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
8984
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8823
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9530
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...
0
9238
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
6073
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
4593
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...
1
3300
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2775
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2206
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.