hello, When I make Ajax SlideShowExtender.GetSlides method non static, it's not working... I need to access application variables in GetSlides (WebMethod) Any help? thanks
denizmercan
Posts
-
how to access application and session variable in web method -
Login failed for user "myDomain\Guest"Yes I did what you say...
-
Login failed for user "myDomain\Guest"Yes I added.. and I gave full permission to that user.
-
Login failed for user "myDomain\Guest"Hello I'm trying to connect to SQL Server2000 that in another computer in local area network. but it says login failed for user "Guest" - I added my windows account (MyDomain\MyWindowsUserName) to SQL Server. - I use windows only authentication. - both computers are Windows XP Pro-service pack 2 - When I add Guest windows user to SQL server, it works fine.. But I don't want to use Guest account. - both computers are in same WorkGroup - I added user name to server computer with exactly same user name and password. any help... thanks
-
DataColumn typeIt's pretty good but it is working some slowly... Anyway I'm using it... thanks a lot
-
Datacolumn typeI have a Dataset that has returned data from SQL Server. I would like to read in what the SQL Server type is for each Column and what the size is. For instance is the column is a nvarchar(20) I would like to be able to find out that the column has a size of 20. Is this possible? I can't seem to figure this out even using the DataColumn. DataColumn.MaxLength is returning -1. I tried also SQL Command: SELECT COL_LENGTH('MyTable','MyColumnName') AS 'MyColumnLength' it's running fine in SQL Query analyzer but it's returning 0 in C# Any idea? thanks
-
DataColumn typeI have a Dataset that has returned data from SQL Server. I would like to read in what the SQL Server type is for each Column and what the size is. For instance is the column is a nvarchar(20) I would like to be able to find out that the column has a size of 20. Is this possible? I can't seem to figure this out even using the DataColumn. DataColumn.MaxLength is returning -1. I tried also SQL Command: SELECT COL_LENGTH('MyTable','MyColumnName') AS 'MyColumnLength' it's running fine in SQL Query analyzer but it's returning 0 in C# Any idea? thanks
-
MultiLine datagrid headerthat works. Thanks a lot
-
MultiLine datagrid headersorry I forgot to say, I need to do this in C# windows application.
-
MultiLine datagrid headerHow can I do this. I use \n in the header. But it doesn't show the second line. thanks in advance.
-
datagrid doesn't save the datathanks. EndEdit works fine.
-
New DataRow in SQL-Server with IDI think you need to use "IDENTITY/IDENT_CURRENT or SCOPE_IDENTITY" method of SQL. But I don't know how you can use it. If you get full source code please let me know.
-
datagrid doesn't save the dataIt doesn't work. Because data is in the datagrid. Datagrid has to send the data to dataset Thanks for your interest.
-
datagrid doesn't save the dataI set up the datasource myDataGrid.DataSource= myDataSet.Tables[0].DefaultView; When I scroll the cursor to next row, datagrid updates the dataset. It's ok. But without doing it, datagrid doesn't update the dataset. myDataSet.Tables[0].Rows.Count is 0 and myDataSet.Tables[0].DefaultView.Count is 1. For example user can enter some data to datagrid then after closes the window. Datagrid doesn't affect the dataset row. I need to say "save data" to datagrid. How can I do this? Thanks