Hi, I'm trying to consolidate my servers and decided to virtualize some of the applications that are not that critical in our company. Could anyone tell me what is the best specs for the server when using virtualization. Your help will surely appreciated. Thanks in advance.
meki_2118
Posts
-
Best Server -
How to make a hierarchy tabler?DS = DAL.Get_Data_BE(txtCcNo.Text) n = DS.Tables(0).Rows.Count Do Until n <= 0 i = i + 1 contItemName = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() - i).Item("ITEM_NAME") contPCode = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() - i).Item("P_CODE") DS = DAL.Get_Level_BE(contPCode) j = DS.Tables(0).Rows.Count k = 0 Do Until j <= 0 k = k + 1 PrimCont = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() - k).Item("PRIM_KEY") DSL = DAL.Get_ItemName_BE(PrimCont) ItemCont = DSL.Tables(0).Rows(DS.Tables(0).Rows.Count() = 0).Item("ITEM_NAME") ItemRepeater.DataSource = DS j = j - 1 Loop DS = DAL.Get_Data_BE(txtCcNo.Text) ItemRepeater.DataBind() n = n - 1 Loop Here's the code.
-
How to make a hierarchy tabler?DS = DAL.Get_Data_BE(txtCcNo.Text)
n = DS.Tables(0).Rows.Count
Do Until n <= 0
i = i + 1
contItemName = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() - i).Item("ITEM_NAME")
contPCode = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() - i).Item("P_CODE")
DS = DAL.Get_Level_BE(contPCode)
j = DS.Tables(0).Rows.Count
k = 0
Do Until j <= 0
k = k + 1
PrimCont = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() - k).Item("PRIM_KEY")
DSL = DAL.Get_ItemName_BE(PrimCont)
ItemCont = DSL.Tables(0).Rows(DS.Tables(0).Rows.Count() = 0).Item("ITEM_NAME")
ItemRepeater.DataSource = DS
j = j - 1
Loop
DS = DAL.Get_Data_BE(txtCcNo.Text)
ItemRepeater.DataBind()
n = n - 1
LoopHere's the loop that I've created. And the hierarchy will consist of up to 5 sub items. that's what I've been planning.
-
How to make a hierarchy tabler?Hi, I'm trying to make a hierarchy table by using the repeater. I've created a loop that checked the items in my data base one-by-one if they have sub items so that they can be placed underneath the main item just like a hierarchy form. But when I tried to insert the item into the repeater one-by-one I encountered a error saying. "ITEM_NAME is neither a DataColumn nor a DataRelation for table Table." Can you teach me how to make a much more easier way to arrange my items in a hierarchy form? thanks.
-
how make a move next command??Brij wrote:
TextBox1.Text = DS.Tables(0).Rows(int.Parse(viewstate["counter"])).Item("ITEM_NAME")
I've tried your code but there are some errors. The "int" can't be loaded and there's a identifier need in the ["counter"] part. :(
-
how make a move next command??yeah. but actually I'm just trying to get the logic of how to check the item one-by-one. Because I'm trying to make a loop statement that will check for the item one-by-one and arrange it in a hierarchy arrangement in my repeater. But if you could give some other alternative and easiest way to do this, that will be a huge help. :)
-
how make a move next command??yes your right. I've tried to make a variable to act like a counter but ever time the page will postback, the value of the counter will return to its original value.
-
how make a move next command??how can i declare this Global Variable?
-
how make a move next command??yes, that's what I'm trying to do. But the code that I've used only showed me the last item in my query.
-
how make a move next command??Hi, How can I create a move next command in web development??? Dim DS As New DataSet TextBox1.Text = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() + 1).Item("ITEM_NAME") This code that I've used just give a move last command and i can't figure out how to the move next so that I can look for the items in my data base one-by-one. can you give me some solution? Thanks a lot in advance.
-
HELP!!! How to make a movenext command?ohh.. thanks for d reply. And about the textbox1 in the code. I'm just testing the code that I've used and didn't bother to change the ID of the textbox. But thanks for the advice though. Happy Holiday :) .
-
HELP!!! How to make a movenext command?Hi, How can I create a move next command in web development??? Dim DS As New DataSet TextBox1.Text = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() + 1).Item("ITEM_NAME") This code that I've used just give a move last command and i can't figure out how to the move next so that I can look for the items in my data base one-by-one. can you give me some solution? Thanks a lot in advance.
-
How to do a movenext into your data???Hi, How can I create a move next command in my dataset???
Dim DS As New DataSet TextBox1.Text = DS.Tables(0).Rows(DS.Tables(0).Rows.Count() + 1).Item("ITEM_NAME")
This code that I've used just give a move last command and i can't figure out how to the move next so that I can look for the items in my data base one-by-one. can you give me some solution? Thanks a lot in advance. -
need your help............yep... your right I'm just a beginner in ASP .net. but i really need to make that updateprogress to work. Is there a simple way to make the updateprogress control to work?
-
need your help............hi, I'm using a VS 2008 web developer and I want to use the UpdateProgress control in while loading my data in the database. But my problem is that the .gif image and message in updateprogress control wont show up while loading the data. I've already put this code.
system.threading.thread.sleep(1000
) but it still wont display the images. Can anybody help me with this problem. thanks a lot
-
How to make a hierarchical gridview???hi, I,m trying to create a hierarchical view of the data in my database using a gridview but the problem is every time I load the data to the gridview, they will just file in single line. Can you help me to arrange my data in a hierarchical form? thank a lot.
-
How to create a ErrorProvider in Web Form?Hi. I'm creating a web site that requiring the user to enter some information and I want to put a ErrorProvider like guide in the text box of my website so that I wont get null input into my database. Usually, I can do this in the Window form by just using the validation in the text box, but it when I tried it into the web form the code won't work. Can you give some alternative code in the web form? by the way, I'm using a the VS 2008 web development. Thanks in advance. :)
-
How to get the value of dropdown listHi, the code you gave works. but, only when the form 1st load and when you try to choose another item from the list box. The text in the label wont change its text to value of the item that I choose in the list box.
-
How to get the value of dropdown listhi, this is kinda simple in vb6 but in vb.net its a different story. I'm trying to get the value of the select item in my dropdown list box and try to display the selected item in a label or textbox but I can't find a way to do it. Can anyone help me with this problem? Here is the sample code I've made to do the thing. Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim DbOraConnection As New DBConnection drpHOList.DataSource = DbOraConnection.stnOraConnect drpHOList.DataValueField = ("PURCEN_NAME") drpHOList.DataBind() End Sub Protected Sub drpHOList_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles drpHOList.SelectedIndexChanged 'lblname.Text = drpHOList.SelectedValue If Not Page.IsPostBack Then lblname.Text = drpHOList.SelectedItem.Value End If End Sub Hope that you can help me. Thank you in advance. :)
-
How to put background image in the master page? [modified]Hi all, I'm a beginner in using the Microsoft web developer 2008 and I'm having a problem designing my master page. I can't seem to put a background image in my design and if I put it directly in the // // line, the image wont appear when I run the program. Even though my web page are nested to the master page. Can anybody help me? Thanks in advance. And if you know some cool video tutorials, that can help a lot. Thanks in advance. :) modified on Wednesday, September 17, 2008 2:32 AM
modified on Wednesday, September 17, 2008 2:39 AM