13,153 Topics

Member Avatar for
Member Avatar for kevin025

i have a crystal report and now with using crystal report viewver want to display it on page .. I want to display the crystal report when the page is loaded .. so i have placed a crystal report viewver in the page and wants to put some codes in …

Member Avatar for kevin025
0
108
Member Avatar for shanboy

hi all i have developed a small website in ASP.net(Visual studio 2005) and SQL server 2005. IIS 5.1 is installed in my machine. How do i deploy it in IIS. i tried to copy the website to default website and set the default document as one in my website. My …

Member Avatar for Lusiphur
0
164
Member Avatar for ayeshakhan

using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; using System.Data.OracleClient; public partial class _Default : System.Web.UI.Page { OracleConnection objConn; OracleCommand objCmd; String strSQL; protected void Page_Load(object sender, EventArgs e) { String strConnString; strConnString = "Data Source=pcrm195;User Id=wllnew;Password=wllnew;"; objConn = new …

Member Avatar for malashukla
0
260
Member Avatar for tarwara

Hi I have a list view in WPF with C#. In which i want headers of every column alignment to be left. eg name class etc headings. I have another query that I have wpf form in which i have a textbox in which i will input a number and …

0
128
Member Avatar for sujimon

Hi Guys, I am trying to implement FormsAuthentication in my asp.net website. I am using VS-2005. The login page in my application is "Default.aspx" from this page I want to redirect the user to "FirstForm.aspx". However, if I type the address of the target page when in login page I …

Member Avatar for sujimon
0
184
Member Avatar for avtarmori

We are developing web application in which we have provided force download functionality for PDF report. We have following code to support Force Download Functionality for PDF report. Response.AppendHeader("content-disposition", "attachment; filename=" + name); if (type != "") Response.ContentType = type; Response.TransmitFile(path); Response.End(); Response.Redirect("~/home.aspx", false); return; As you can see from …

0
40
Member Avatar for smjaved
Member Avatar for localinternet
0
80
Member Avatar for malashukla

How to get .swf file's Height and Width in C# or VB.net Program.Because I want to Load dynamicly a .swf file in my program with Flash File current size.

Member Avatar for kmrameshkumar
0
190
Member Avatar for johnb08

How would I make a 3,4,5 triangle print out in a GUI. I was using the drawline function, but I can't figure out how to make it so its between two coordinate points. I have some code like this to draw a line [code] // draw line coloredPen->Color = Color::Red; …

Member Avatar for johnb08
0
122
Member Avatar for Bugaya

I'm using VS2005 & SQL Server 2005 which is installed with VS2005. Platform is XP SP2. I've an app that connects to the DB & get some data from it . The app & DB are on the same machine . Suddenly When I run the app. , I've that …

Member Avatar for khansa74
0
175
Member Avatar for johndoe444

Hi, In j2ee web application, an web application is packaged with deployment descriptor web.xml in war (zipped) format. And then the application is deployed to the web application server so that the server can communicate with the outside world. Now for asp.net the application has to be deployed to the …

0
62
Member Avatar for vuyiswamb

Good Day All i have a Function e.g [CODE] public String Getdata(String mystr) { //Do what ever //return a String }[/CODE] and i want to call this function and pass data in Javascript like this [CODE]function KeyPress() { var TExtbox1 = document.getElementById('Text1'); if (TExtbox1.value.length == 2) { //call the function …

0
82
Member Avatar for seger

If i use content place holder in Masterpage ,I am unable to use Ajax Tools into aspx Pages.. Why we are not able to deploy in windows XP,only in Windows 7 we can able to do? Pl.guide how to deploy my site in Windows XP... Thanking All..........

0
53
Member Avatar for rohand

Do you guys have any idea how to drag file from Windows Explorer and drop it to specific node in TreeView control using asp.net ? I mean TreeView has two node say Finance, Marketing. Now i drag file from windows explorer and want to drop it on Finance node. Is …

0
79
Member Avatar for sdmcnitt

I have a .NET winforms app that automates Excel and checks for a worksheet password. The requirements are to be able to detect 1) that the protection is turned off 2) that the password is removed (protected but there is no password) 3) that the password matches the correct password …

Member Avatar for nancyli148541
0
758
Member Avatar for BrunoRosales

Hi everyone, I have a question and I would greatly appreciate any help with it. Here it goes: I have a SQL Server Database that I am trying to display data to a data grid with. However, I have a drop down box and three radio buttons that will allow …

Member Avatar for daniel955
0
110
Member Avatar for rajeshborn4u

The Internet explorer doesn't allow the dropdown list to show downwards.Hi, I am trying to insert values into a dropdown list with a for loop. I have a dropdown list like. [code] <div style="padding:200px 0"> <asp:DropDownList ID="ddlno" runat="server" > </asp:DropDownList> [/code] In the coding part, I have this. [code] int …

0
78
Member Avatar for malashukla

i m working on a application in asp.net on which i want to apply a dynamic picture gallery. but the problem is i m fetching the thumbnails from the database in repeater and when the user click on the thumbnail image the fullimage of that thumbnail opens in another div …

0
60
Member Avatar for Eclipse414

guys, i have this function: [code] Public Function GetDataSource(ByVal dataItem As Object) As DataTable Dim intNo As String = DataBinder.Eval(dataItem, "Item_No") Dim blahdt As DataTable = tempdt [COLOR=Red]'blahdt.DefaultView.RowFilter = "Item_No='" & intNo & "'"[/COLOR] [COLOR=Navy]'blahdt.Select("Item_No='" & intNo & "'")[/COLOR] Return blahdt End Function [/code] i want to filter my datatable, …

Member Avatar for awaishafeez86
0
149
Member Avatar for dhanapal86mca

Can Any one Tell me about localization and globalization.. How to implement it in asp.net website to create multilangual website..

0
60
Member Avatar for lm111

Hello, I'm trying to create an app where the user can search the database using different controls. For example let's say the user can search by date (calendar control), country (DropDownList), states (DropDownList) and cities (DropDownList). So far I have the DropDown controls working. The user selects whatever they want …

Member Avatar for rohand
0
101
Member Avatar for lisles

im trying to open a document...but every time i get a dialoge box asking if i want to pen,save or cancel.i just want to open the document.can someone tell me wot im doing wrong?here's my code [code] if (objView.extension == ".pdf" || objView.extension == ".xls" || objView.extension == ".xlsx" || …

Member Avatar for rohand
0
88
Member Avatar for snairsumith

using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using System.Data.SqlClient; public partial class userreg : System.Web.UI.Page { SqlConnection con; protected void Page_Load(object sender, EventArgs e) { } protected void ImageButton1_Click(object sender, ImageClickEventArgs e) { …

Member Avatar for rohand
0
105
Member Avatar for johndoe444

I have experience and knowledge in java web application development. How similar is asp.net and c#? How long would it take to master c# and asp.net? If I want to prepare for interview in c#/asp.net. Is it possible to prepare without having any experience? What would be the strategy for …

0
74
Member Avatar for tlox

I have created an ASP.NET website using MS Visual Studio. It has a data source which is a database created using SQL Server.I have to generate high end(quality)reports using the data in this website. However i can only generate low quality reports using the built-in crystal reports template. So i …

0
63
Member Avatar for somesh_nag

We have developed a website which connects to a third party Server and sends a request with some data, and receives the result and displays in our Website. We used IIS server to host this site. How this IIS server handles if two different users send data to server simultaneously? …

Member Avatar for eyal_elkevity
0
132
Member Avatar for visweswaran28

Hi, I am using DataGrid, Now I want to know to get all values from that Datagrid. How can I acheive. Thanks in Advance, Visweswaran V

Member Avatar for jbisono
0
120
Member Avatar for sanam2010

[I]Hello every body,[/I] I have a question, pls help me, thanx in advance. I am searching the response of these two questions: ?If we need to have a framework for a bank (banking business)it is better we use .net technilogy or java? (ehich one is preferable?) [I]Regards[/I]

Member Avatar for masijade
0
119
Member Avatar for naka1888

Hi, I have a gridview and would like to update one of the columns within the gridview. I want to be able to search for the product id of an item and when the item is displayed the user can enter a number to a textbox. When the submit button …

Member Avatar for leahrose87
0
65
Member Avatar for Weppies

Hi I have generated a class from a .xsd file using xsd.exe. The class has alot of lines. But I dont need to give all the attributes values. All i want to know is how can I fill the class attributes with values so that I can use XMLSerializer to …

0
50

The End.