Thanks but waiting your teacher ;) DADAX
dadax_85
Posts
-
Map network drive :S -
Map network drive :Swhe when i use map network Drive in windows XP in phase of authentification ( username and password ) the username came guest and can't change it :S how can I solve this problem thanks DADAX
-
How to pass information from page to page [modified]1-Response.Redirect("anotherpager.aspx?string=value") DADAX
-
opening web pageImports System.Diagnostics.Process Start("http://www.google.com") DADAX -- modified at 15:21 Sunday 21st May, 2006
-
Create Complex Trigers need helpthanks thanks DADAX
-
Create Complex Trigers need helpI have three tables 1) AssignProjectUser(ProjectID,UserID) 2) Task(ID,ProjectID) 3) AssingnTaskUser(UserID,TaskID) I will create Trigers that after inserting a assignProjectUser I will select all the task who have the ProjectID inserted in AssignProjectUser and insert list of AssignTaskUser that have the userID same assignProjectUser and TaskID that i have selected Exemple: suppose that I have TASK: 1 1 2 1 3 2 when I insert a assignProjectUser (1,15) the number of task for this Project is 1 and 2 so the trigers will add (1,15) (2,15) I hope that you understand me and really need help as soon thanks DADAX
-
VB.net (exe file) -
error in asp.netbut the code is write in the file.asp coz i create datasource and formview and the command of add is writen in ASP so if i write try catch in the code VB or C# it's didn't worked i hope that you understand me DADAX
-
Stored ProceduresDim con As New SqlConnection("Data Source=eyetech\sqlexpress;Initial Catalog=TBase;Integrated Security=True" providerName="System.Data.SqlClient" ) Dim MyCommand As New SqlCommand con.Open() MyCommand.Connection = con Dim proc As String proc = "EXEC SP1 " & TextBox1.Text & ",'" & TextBox2.Text & "','" & TextBox3.Text & "'," & TextBox4.Text MyCommand.CommandText = proc MyCommand.ExecuteReader() DADAX
-
Stored Proceduressorry !!!!!!!!!!!1 DADAX
-
error in asp.nethey and sorry just i need to know how i can catch error in asp.net i hope that you understand me :( and thanks anyway DADAX
-
Making a field nulltry this myCommand.Parameters.Add("@Number", OleDbType.BigInt).Value = ""; dadax_85@hotmail.com
-
stored procedures problem in SQL Server 2000hey Create Procedure Procedurename ( @names varchar, @roll int ) as Insert into tablename values(@names , @roll) dadax_85@hotmail.com
-
error in asp.nethey i'll know how i can catch error in asp.net DADAX -- modified at 13:51 Sunday 23rd April, 2006
-
Stored Procedureshey i'll give you an example asp.net ( VB.net ) for executing a stored procedure in sql server 2005 but it same in another database 1) the stored procedures to add record and take the paramters from textboxes the code for stored procedures in sql is : create PROCEDURE SP1 ( @ID bigint , @Name nvarchar(50), @Description nvarchar(500), @ProjectID bigint ) AS INSERT INTO [TBASE].[dbo].[TaskType] ([ID] ,[Name] ,[Description] ,[ProjectID]) VALUES (@ID ,@Name,@Description,@ProjectID) RETURN 2) to execute this stored procedures from asp.net Imports System Imports System.Data Imports System.Data.OleDb Dim con As New OleDbConnection("Provider=SQLNCLI.1;Data Source=DADAX\DADAX;Integrated Security=SSPI;Initial Catalog=TBase") con.Open() Dim MyCommand As New OleDbCommand() MyCommand.Connection = con Dim proc As String proc = "EXEC SP1 " & TextBox1.Text & ",'" & TextBox2.Text & "','" & TextBox3.Text & "'," & TextBox4.Text MyCommand.CommandText = proc MyCommand.ExecuteReader() I wish that help you DADAX
-
include aspx filehey i need to know how i can include a file aspx ( some people tell me response.writefile(filename) but it did'nt work coz it used just for html page ) 10x for help DADAX