I have a table that was created a few years ago (LIVE), but I need to change ANSI_NULLS from OFF to ON for this table. How can I do that without re-creating the table? Thanks in advance!
ckruger
Posts
-
Can I modify ANSI_NULLS after table is created? -
SQL Reporting ServicesHow can I make the items in the report to have alternating gridlines? e.g. first line second line third line fourth line The lines with the strike trough should have a light grey background colour, and the other lines must have a white background colour. Thanks Cornelis
-
PivotTableHow to craete an Pivot table object with
ActiveXObject("Excel.PivotTable");
Excel.PivotTable
does not work -
c# and javascript functionsHow to call a javascript function from c# code behind
-
How to use a c# sring in javascriptHow do I get
bananas = Fruit.text
-
How to use a c# sring in javascriptI assume
Fruit.Text
is a ASP.NET textbox. How do I get the text inside the textbox intobananas
-
How to use a c# sring in javascriptI want to use a string from WebApplication1.aspx.cs in the WebApplication1.aspx code behind (javascript).
-
Object reference not set to an instance of an object.If I call it like this within the same class it works fine...
private void Page_Load(object sender, System.EventArgs e) { tb1.Text = "text 1"; dtStartDate.Value = "11 Dec 2005"; **GetDate();** } **public void GetDate() { test_string = dtStartDate.Value; }**
But if I call GetDate() from another Web Form **( NOT THE test class)**it gives an error ... see code:test t = new test(); **t.GetDate();**
test is the class where the GetDate function is located -
protected string to public static stringHow can i use the protected string (TextBox.Text) inside the public static function? I get the following error on the return statement: MyWebForm.test.tb1' denotes a 'field' where a 'class' was expected
public class test : System.Web.UI.Page { protected System.Web.UI.WebControls.TextBox tb1; private void Page_Load(object sender, System.EventArgs e) { } public static string GetDate() { **return tb1;** }
-
web formsHow to set
string myString= javascript_string;
where myString is a string created by c# and javascript_string is a string created with java script on the same form -
Closing or ending a processSorry! I've clicked on X of the main form.
-
Closing or ending a processSorry! I've clicked on X of the main form.
-
Closing or ending a processYes, basically the user does...
-
Closing or ending a processI have opened a Excel spreadsheet with c# by using the Excel.Application class. After I have closed the excel file in windows by clicking on the X in the upper right hand corner, the process EXCEL.EXE stil remains.???
-
How to reference a string from another class?I'm in one class and would like to use a string that was defined in another class. Ho to...
-
Open an excel documentI have used the following code Process.Start("EXCEL.EXE", "c:\\temp\\test.xls"); and ASP.NET starts a process, EXCEL.EXE, but the window does not open. I have tried to set the WindowStyle to maximize but stil nothing... What to do?
-
Open an excel documentHow to open an excel document with c#, The excel document must open in its own window when i press a button
-
Pasing a string from c# to javascriptMyString and aString, c# string or Javascript string? I have a url string (named urlString)in c#, and I want to use it in the window.open function in Javascript?
-
Pasing a string from c# to javascriptHow?
-
CheckBoxList inside in web formsHow to make a CheckBoxList that scrolls on a web forms (inside a given size window for example) page?