Thanks for the reply from both of you...:-D I have the idea d.
rico cheah
Posts
-
passing value in the same page -
passing value in the same pageHTML coding part: I have a button (asp:button), after click, i wan to show the data in the textbox. I'm quite confusing with server site and client site. Below are several ways I have tried but fail: 1. use Me.txtid.text = "abcdef" under Private Sub button_Click in page1.aspx.vb, but it fail to show "abcdef" in the textbox. 2. at Private Sub Page_Load, put in coding below: if me.ispostback then me.txtid.text = request("id") end if at Private Sub button_click, put in coding below: response.redirect ("page1.aspx?id=abcdef") What should I do? Somebody please help me... :sigh: Thank you...
-
32 or 64 bit.Hi, I'm currently using WINXP 32bit... I love the interface of Vista, and also want to have a look on the new features of Vista. I'm curious to try out 64bit since my pc is support for 64bit. Anyway, here are some questions: 1. 64bit OS support 32bit software? What I means is, all the software I installed should be stated support 64bit or any older version (32bit) also will be supported? (I'm a serious gamer, so i'll really disappointed if can't play a lot of games just because of cannot support 64bit...) 2. Is there any incompatible with Visual Studio? (I still remember last time when I upgrade from WINME to WINXP, visual studio 6 have a lot extra errors and my lecturer told me WINXP have extra about 50-60 bugs on visual studio which cannot be solved yet... that time i think haven't release XP SP2...) 3. You mention about HP printer driver is the only hardware driver cannot settle, the rest of the hardware can easily auto detected and installed by using VISTA pre-included driver is it? Sorry for the long question... and hope I can get the answer. I'm not hoping to buy the Vista 64bit, try it out and then throw it a side, go install back WINXP 32bit...
-
ASP.NET 2.0 Menu ControlLine 18: Line 19: Trying to implement SqlSiteMapProvider from Jeff Prosise (MSDN) but get the above result (error on line 20). Anyone can teach me how to solve the problem?
-
Release data sourceThank you for the advice. I'm very much appreciated.
-
How to make the packaging?Oh I see... I will have a try on the setup of the machine in order to execute the .exe file in /bin. Regarding the project deployment, so far I try my best to search through the menu(s) inside VS.NET and also all those included in the Start Menu, but I can't find the project deployment tools... :sigh: Anyway, thanks for telling me all these, I'm very much appreciated.
-
What the function declaration mean?ashwath1979 wrote:
Private Sub LoadArray(ByVal ParamArray CRCBytes() As Object)
CRCBytes() is an array, so all the values that pass in is stored inside this array variable.
ashwath1979 wrote:
For i = 0 To UBound(CRCBytes) m_byteCRC8(i) = CRCBytes(i) Next
Therefore, it use the for loop to actually call out the CRCBytes value and store inside m_byteCRC8.
-
How to make the packaging?Can you provide me some guideline to use the deployment tools? I'm using .NET 2003 Enterprise Edition. How to include .NET runtime? Do you means the machine must install at least .NET Framework v1.1 or newer version? Please help me... thanks. -- modified at 3:42 Friday 17th November, 2006
-
How to make the packaging?I currently work on VB.NET windows application. I have a difficulty in make an installation package for the windows application project I have done in VB.NET. According to what I know, in Visual Studio 6, it is included a packaging tools where help us to package the VB6 project file, including create .exe and so on, which can build out an installer. Anyway, in VS.NET, I can't find this packaging tools. Although, during execute (after compile), there is an .exe file created in the folder bin/. However, when I copy this .exe file to a PC which is not install VS.NET, then the .exe file cannot run. Do we need to use 3rd party packaging software to solve this problem, or actually I have left out something? If anyone know, please teach me... thanks.
-
Release data sourceI'm new to ASP.NET. Can anyone provide answer for my question below? 1. I have a database connection in Page 1; then after some process, it redirect to Page 2. Now my question is, if we don't close the connection (eg: MyDBConn.Close), after redirect to Page 2, will the resourse still grab in Page 1?