Hi See the following link Active Directory Domain Services
Andrei_KS
Posts
-
asp.net 2.0 + c# -
gcServerHi, All Who have experience with used gcServer on .NET 2.0. Please share experience.
-
gcServerHi, All Who have experience with used gcServer on .NET 2.0. Please share experience.
-
How to have post Remainders??Hi I think you must use Windows Service for this task. You must questioning DB by timer. And the end you receive simple "Scheduled".
-
How to add an "ENTER" into string ?Hi \r - Carriage return dim str as string = "A \r B" Escape Sequences
-
string and string builderHi I think you must read MSDN - StringBuilder Class This class represents a string-like object whose value is a mutable sequence of characters. The value is said to be mutable because it can be modified once it has been created by appending, removing, replacing, or inserting characters. For comparison, see the String class. Most of the methods that modify an instance of this class return a reference to that same instance. Since a reference to the instance is returned, you can call a method or property on the reference. This can be convenient if you want to write a single statement that chains successive operations one after another. The capacity of a StringBuilder is the maximum number of characters the instance can store at any given time, and is greater than or equal to the length of the string representation of the value of the instance. The capacity can be increased or decreased with the Capacity property or EnsureCapacity method, but it cannot be less than the value of the Length property. Implementation-specific default values are used if no capacity or maximum capacity is specified when an instance of StringBuilder is initialized. Notes to Implementers: The default capacity for this implementation is 16, and the default maximum capacity is Int32.MaxValue. A StringBuilder can allocate more memory as needed to store characters when the value of an instance is enlarged, and the capacity is adjusted accordingly. The amount of memory allocated is implementation-specific, and ArgumentOutOfRangeException is thrown if the amount of memory required is greater than the maximum capacity. For example, the Append, AppendFormat, EnsureCapacity, Insert, and Replace methods can enlarge the value of an instance. The individual characters in the value of a StringBuilder can be accessed with the Chars property. Index positions start from zero.
-
Dynamic ControlHi, I think you must use PlaceHolder control how container. For example:
protected void Page_Load(object sender, EventArgs e) { Button img = new Button(); img.Width = 15; img.Height = 15; img.Click += new EventHandler(img_Click); mPlaceHolder.Controls.Add(img); }
-
Slicing audio fileHi, Maybe Windows Media Encoder is help you.
-
How to Save Audion Files to The SQL SERVER using ASP.NETHi, I think you must use Windows Media Services for online play audio and video file's. I'm not recommend save audio and video file's in DB. I think you must save path to file's in DB.
-
Programmatically Create a DSNHi, I think you must reading this Dynamically adding DSN-names.
-
include aspx in anotheraspHi, I think you must use ASP.NET User Controls (*.ascx)
-
html to pdfHi, You can see next link's - How to create PDF document in ASP.NET: "Hello, PDF!" example and PDF Components Acrobat Controls - for .Net ASP.Net Java ActiveX Delphi C/C++:
-
ASP.Net Uploading ProblemThen I think you can see HttpModule and so on (handler for upload file's). See next link's - HttpHandler or HttpModule for file upload, large files, progress indicator? and HttpModule and upload files.
-
ASP.Net Uploading ProblemSee next link Check file size with Javascript
-
ASP.Net Uploading ProblemYou can use client JavaScript for verify file size. And if this size greater, you dont make DoPostBack.
-
how to connect to oracle data base using c#Hi, I think you can read more information on this page - Oracle Data Access Components (ODAC)
-
ASP.Net Uploading ProblemHi, I think you can use next attribute in web.config -
-
Word Doc from DatabaseHi, I appologise for my knowledge of English. I think you be able use table in data base - Name(char(50)), Data(text). Name for document title and Data for Ms Word document. For load document you be able use ASP.NET web handler's. Web handlers are software modules that handle raw HTTP requests received by ASP.NET. I be able send you sample use this handler's.