hii On button click event. i m passing a query in object of the reportviewer form. and pass the parameters as well where i have already declared in the...
Dear Friend, i want to generate a report (in sql reporting services) where i have to pass the input parameter as From Date and To Date so that i'll get...
Hello Everyone, I am trying to create an Organizational Chart using C# to display on the WEB. (web application) I have a TABLE of data containing the...
Dear Friend, i want to generate a report (in sql reporting services) where i have to pass the input parameter as From Date and To Date so that i'll get...
Hi Arhan I don't know of an existing chart control that would be suitable in ASP.NET... Since you're deploying as a web application, that (I presume?) has a...
I Have a text box find and when customer types I try to access outlook and loop through the contacts. but get a "InvalidCastException was unhandeled." Where or...
Hi, You can use the FileUpload tool provided in .Net 2.0. Below is the sample code for that. if (FileUpload1.PostedFile.FileName.Trim() != "") { string path =...
Hey all, Im very new to .NET..i've always been a PHP guy as far as web goes, But recently ive gotten into .NET. frankly, im fascinated by it. I am having an...
yes of course you create organizational chart. microsoft visio give u the control that helps u . but the main problem to use that control is it is not working...
I have a web app. built on asp.net 2.0. The problem was that when the user double-clicked any SAVE button in my application, there were double (or even more)...
Hi Arhan, I think generating jpeg is fine when hierarchy is not very big. Consider using some control like tree view control where you can populate nodes on...
System.DateTime in ASP.NET Below are common uses of the DateTime Structure in C# DateTime.Now; 5/8/2008 5:03:05 AM DateTime.Now.ToString(); 5/8/2008 5:03:05...
Blank I am sending the list of commonlyused regular expression. There are a variety of tasks that regular expressions can be used for in regards to input...
I need to find out which Processes are locking a file, stop them or kill them to be able to delete the file. I went through the Process & ProcessInfo class but...
Hi, I'm a beginner using Visual Studio 2005 and found that when I made a page a "Start page" with a rt-click and then ran the program (ctrl-F5) the page_load...
Hello ,    Wiring of page load event can be done in two ways.  Declaratively in ASPX page like this    <%@ Page AutoEventWireup="true"%>  ...
nope, For one input control u can have any number of validation controls.  so add one more validation control i.e. custom validation control  it consists of...
Dear all, My problem that my textbox cause the form to be post-backed even the validation is false. Please, note that this textbox is placed on update panel...
any solution ? realhossam <realhossam@...> wrote: I need to find out which Processes are locking a file, stop them or kill them to be able to delete the...
Please explain the scenario clearly or post your markup code, I tried with two textboxes having required field validation with one textbox sitting in...
another resource: http://www.codeproject.com/KB/dotnet/regextutorial.aspx you can find a cool regex builder tool aslo. Thanks, TFR On Thu, May 8, 2008 at 5:29...
Actually, I don't know solution to your problem . eli momken asa3dek fieh that there is program called unlocker . it do the same as you want . check their...
Hi, Offcourse it should do post back because server side OnTextChange event fire on when your textbox auto post back property is true, if you don't want...
Thank you, Zeeshan! Your idea worked and when I made the AutoEventWireup="false" the page ran. It DID have Web Form Designer generated code (which I don't ...