Jump to content
Xtreme .Net Talk

miwaypro

Avatar/Signature
  • Posts

    36
  • Joined

  • Last visited

Everything posted by miwaypro

  1. ok, thank you very much
  2. miwaypro

    Error

    hi all, I have an ASP.NET page that gives me the following error message It suppose to close the Windows and display the "Record listing" after the information has being saved into the db. I don't want to click the retry button, can someone tell me what's wrong with it?
  3. hi all, This is my code, which give me an error of "name" is not declared 'code for WebForm1.aspx.vb Sub submit(ByVal sender As Object, ByVal e As EventArgs) If name.value <> "" Then p1.InnerHtml = "Welcome " & name.value & "!" End If End Sub Code for WebForm1.aspx <form runat="server"> Enter your name: <input id="name" type="text" size="30" runat="server" /> <br /><br /> <input type="submit" value="Submit" OnServerClick="submit" runat="server" /> <p id="p1" runat="server" /> </form> The name is my input id, how to pass the value?
  4. hi all, I'm a ASP.NET newbie, the following line of code doesn't work. it has a blue line at the work "language" <script language = "vb" runat="server"> Public Class WebForm1 and it gives me an error of '>' expected hope someone can help me, thks in advance.
  5. Thks a lot
  6. What does the "Copy local" of the reference means?
  7. In ur post above u ask to select the "Attach Database". but can i use the "restore database? what are the difference?
  8. Before i built my C# solution, should i need to change my output to dll instead of window application? Then just add in the dll file, can i do so??
  9. Is that possible for the database file to store in different folder, instead of the "data" folder?
  10. Can somebody tell me How to incorporate a C# Project into a VB.NET Solution??
  11. Thks for ur advise, i got an example from the MSDN web site, but is too complicated, i just want the easiest way of doing that.
  12. Can someone tell me how to bind my selected data?
  13. thks everyone, i solved my problem aleady, can someone tell me how to bind my selected data into datagrid?
  14. I try it already, It come out with 2 windows, and i would like to khow how to browse for projects to include. OR, Use Setup wizard will be easier?
  15. What if i already have a project developed completely...
  16. How to build a package in .NET? Setup.exe
  17. yes, that is an error message pop-up when i use your without format it. The column is defined as DateTime. The problem is solve after i use the toString, i believe that is some way that is better than toString that i can use, hope u can help me.
  18. Thks a lot
  19. The books that i found are all teach on SQL Statements
  20. what is application for the files under the extension .rpx ?
  21. can someone tell me how to copy the database of SQL Server from 1 pc to another? and how to restore it?
  22. else it will come out with a overflow problem, I do it by this Parm3.Value = movedate.Year.ToString() & "-" & movedate.Month.ToString() & "-" & movedate.Day.ToString() is that any easier way to do it
  23. thks, i had solved this problem already
  24. I have the following and i want to format the date and time Dim Parm3 As SqlParameter = .SelectCommand.Parameters.Add("@movedate", SqlDbType.DateTime) Parm3.Value = movedate.GetDateTimeFormats(("dd-mm-yyyy hh:mm:ss")) that is something wrong with my second line of code, can u pls help me
×
×
  • Create New...