Jump to content
Xtreme .Net Talk

Datahighway

Avatar/Signature
  • Posts

    44
  • Joined

  • Last visited

Everything posted by Datahighway

  1. Hi PraveenKumar, i do not unterstand what do mean. Why do you need a Virtual Directoriers ? With graphics want you to add in a ASP NET page ?
  2. Hi All , i have a trouble with unterstanding the global variable in ASP.Net. How can i set a globale variable. (Property doesn*t work) I must use different function wiht the same variable. Maybe can post someone a exsample for me. Thanks and best Regards Datahighway
  3. Hi Anam, can you post more code. Regards Datahighway
  4. Hi DayWalker, you can use the HTML Tag. for exsample Response.Write("<br>") ' new Line 'Font Change Response.Write("<font size=7 face=verdana color=#00ff66>") Response.Write("My Test") Response.Write("</font>") Regards Datahighway
  5. Hi Webjumper, you Solution doesn't work. I got a error message. Need object in row 0 Any Idee ? Regards Datahighway
  6. Hi All, How can I refresh my Asp.Net Webpage. I want to refresh my weppage all 60 sec. Must i use a timer ? Thanks and regards Datahighway
  7. Hi ALL, How can i close my current webpage, by click a webform button? Can i use javascript in the codebehind file ? If yes, how can i do this ? Any ideas ? Regards Datahighway
  8. HI ALL, how can i insert a empty datetime field in a Access 2000 database. I know , if the textbox empty so must i write a dbnull in the database. But how can i do this ? Can anyone help me ? Regards Datahighway
  9. Hi Robby , thanks for you Solution, but there was a litte error. The property of the DataFromatString is {0:d}. Regards Datahighway
  10. Hi All, i have a trouble with the datagrid. In my Access 2000 database is a field (dateand time) , that contain a date with this format 07.09.2003. When i bind the datagrid, the datagrid shows a different format. 07.09.2003 00:00:00. Any Idea ?? Regards Datahighway
  11. Try it with the Function IsDBNull() For More Details see the Framework Docu. Regards DataHighway
  12. i mean a import from a dll. I want to use the netapi32.dll. Regards Datahighway
  13. Hi All. How can i load a dll . e.g i want load a dll from the folder Windows\system32. Thanks Regards Datahighway
  14. Hi Hawk, which database you want to use ? If your database does not have so many Entries, take a Access Database else use a SQL 2000 or My SQL Database. Can you tell me more about your project ? Why do you use a web service ? I do not unterstand what do you mean with remote Database. Do you mean ODBC ? When you build a Webapplication, as a rule is your database on the Webserver too.
  15. Hi DonnaF, you must use Apostrophe for your Statement. e.g INSERT INTO People (Name, Age) VALUES ('Bugs Bunny', 7). I dont know the value of yours variables. (mFirstName and so on) Regards Datahighway
  16. Hi i have found a better Solution. <script id=clientEventHandlersJS language=javascript> <!-- function Form1_onmouseover() { ' insert here you Code } //--> Insert this in the <form > onmouseover="return Form1_onmouseover()"
  17. Hi Fotini, i have found a example for you. ' Visual Basic Private Sub ImageButton1_Click(ByVal sender As System.Object, _ ByVal e As System.Web.UI.ImageClickEventArgs) _ Handles ImageButton1.Click Dim msg as String = "" Dim x As Integer = e.X Dim y As Integer = e.Y ' The button graphic is assumed to be 100x100 pixels. ' This checks coordinates against predetermined values that ' make up quadrants of the picture. If x >= 50 And y >= 50 Then msg = "Southeast" ElseIf x >= 50 And y < 50 Then msg = "Northeast" ElseIf x < 50 And y >= 50 Then msg = "Southwest" ElseIf x < 50 And y < 50 Then msg = "Northwest" End If Label1.Text = msg ' Display results End Sub I hope it helps Regards Datahighway
  18. Hi Andycharger, you must use e.g a Button. Public Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' get you Values from the Textbox And Text Area Dim strTB As String = Textbox1.Text Dim strTA as String = TextArea.Text ' You can write here the code for the Database ' insert Command or update Command and so on End Sub
  19. HI , i have found a example for you. http://www.aspalliance.com/aspxtreme/sys/web/ui/webcontrols/datagridclassitemcommand.aspx Regards Datahighway
  20. Hmm , why can you not uninstall ? The message from Derek is correct. Tyr this again.
  21. Maybe , can you use this // <authentication mode="Windows" />
  22. See this Arctile http://support.microsoft.com/default.aspx?scid=kb;EN-US;232524
  23. HI All, How can i get the value of a hidden Datafield. I am using a DataGrid and i have hidden some Fields. The Idee is to build a detail view. best regards Datahighway
  24. I have found a Solution. integer = DataSet.Tablename.Count -1 ' Number of database rows DataRow = DataTable.Rows.Item(integer) ' I am now at the last line of my Database (DataSet) best regards Datahighway
  25. HI ALL, In ASP i can use the function Move.Last to naviagte in a Database and in ASP. NET ? Thanks
×
×
  • Create New...