13,153 Topics
| |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
please guide me how to connect to xmlpage which act as database through asp.net page | |
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. | |
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; … | |
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 … | |
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 … | |
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 … | |
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.......... | |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
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, … | |
Can Any one Tell me about localization and globalization.. How to implement it in asp.net website to create multilangual website.. | |
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 … | |
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" || … | |
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) { … | |
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 … | |
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 … | |
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? … | |
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 | |
[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] | |
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 … | |
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 … |
The End.