13,153 Topics
| |
hi...! i want to create the crytal report for my project in which i am using VB.NET language with the database of access...! i have now idea how to create the reports. i was just try to create the reprots it just shows only one record. kindly solve my problem … | |
Problem: I have an enumerated type which has description tags in the following style: [URL="http://xml.indelv.com/data-binding-enum.html"]description tag tutorial[/URL] . I have a Windows SQL Server Database from which I am pulling the data (as integers then castine to Enums) which is then being bound to a datagrid. Instead of pulling and … | |
Hello, I am trying to get the currently selected values from dropdown lists and textboxes from a web page and write them to an access database. I am using MS Web Developer 2005 Express. To do that I have created data Source , for the InsertQuery Property of the DataSource … | |
Hi! Error - Conversion from string "DataItem.partOne" to type 'Double' is not valid. I have written the following databinding code in the datagrid and the am getting the above error - [Code=asp.net] <Columns> <asp:TemplateColumn HeaderText="Part B" ItemStyle-HorizontalAlign="Center"> <ItemTemplate> <asp:checkbox runat="server" ID="partTwo_Edit" checked= '<%# DataBinder.Eval(Container, "DataItem.partTwo") %>' Enabled = '<%# IIf(DataBinder.Eval(Container, … | |
Hi, I rather my dev team has a PDF file that needs to be compressed before it goes to download by users. Is there a way the compression can happen programatically without human intervention. step a) PDF file upload b) A script compress the file to a preset or acceptable … | |
I have developed a login window using asp, in .aspx format. This i need to link to an another program where it is windows application in the sense, homepage.vb form. I need a code to link login.aspx with the home page.vb form please help me as early as possible. Thanks … | |
hi, there, im coming up with a page where manager can request for annual, monthly,weekly and daily report. However, ive got a error message as below: Parser Error Message: The file '/asp.net christine/Default.aspx.vb' does not exist. Source Error: Line 1: <%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> The whole page … | |
Hello Friends, I need your help to select web hosting service provider. My website is develop under ASP.Net and I am looking for a good web hosting provider with yearly plan. So please suggest me the good services provider from Michigan. I also want to know about VPS Hosting. | |
hi, there... im doing a page that shows report of a delivery boy in a courier company. But, I can't get any results and i don't know where i've gone wrong...please help [code=asp.net]<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head … | |
I want to add some custom properties as well as the existing properties should remain same in the controls. Some of the controls can have the extended properties, but some controls like Textblock are sealed so can not be able to inherit other controls from the existing control. Anybody have … | |
Hi All I am getting below error. basically I want to loop through all controls in a page and make sure they have not changed the values. if they have i want to prompt a message asking to save. while looping the controls I am not able to send it … | |
hi, there...im trying to figure out where to use these authentication codes as im trying to come up with a login page. these codes are used over the <head> tag, but is it used within the <html> tag? [code=xml]<?xml version="1.0" encoding="utf-8" ?> <configuration> <!-- enable forms authentication --> <system.web> <authentication … | |
hii alll,... i have a feedback form whr the user enters the data and it gets stored in the database.i have also given validations for submitting the form,,(for e.g. the user wil have to enter his name,,he cant leave tht field blank)...the prob is whn i click on the signout … | |
Hi I have a scrollbar on my page with a lot of text. And sometimes when I start scrolling, it jumps up again. You can see what I mean on: [url]http://radiojazz.dk/udsendelser.aspx[/url] I have tried to write: [CODE] MaintainScrollPositionOnPostback="true" [/CODE] on the top of my aspx page but it won't work, … | |
Hi guy, i'm newbie of .net language. Last week i found a new method at the .net with vb.net language. That is in the Global.asax, you are enable to store a global variable. The common at below: [ICODE]Application("ABC")="CDE"[/ICODE] i doubt that this method with cookies or session. Besides this, i … | |
Hi, I'm create a console application for extracting system drives through driveinfo class & i also extract files and folder for there usage class but in website how can i display drives in treeview control. plz give the example in vb. thank you | |
hi, do I have to have a datakeyfield as [B]integer [/B]for a datagrid in order to delete rows from the datagrid? thanks, aditi | |
hi guys... Can anyone gime some points on the drawbacks of using layered architecture...?? or when to go with layered arch. (BLL, DAL etc). Suppose we got a project .. say 150 hrs in total... do we need to go with layered one or go with conventional method of writing … | |
hi i have made one website in VS 2008 (Asp.net 3.5) using back end SqlServer 2008 and when i configure my website on my local pc so it will generate the error "Login failed for user" when i will going to run the website . | |
Hi, I have a need to insert images to the database. I tried it using the following code: [code]if ((file1.PostedFile != null) && (file1.PostedFile.ContentLength > 0)) { // Get the filename. byte[] fileData = null; string fn = System.IO.Path.GetFileName(file1.PostedFile.FileName); try { // Access the file stream and begin the upload. … | |
I cant seem to find anything wrong with this code. However, I get an error message from my catch block everytime. [code=vb.net] Imports System Imports System.net.mail Imports system.web Imports System.Web.UI Imports System.Web.UI.WebControls Imports System.Web.UI.HtmlControls Imports System.IO Partial Class contact2 Inherits System.Web.UI.Page Protected Sub submit_Click(ByVal sender As Object, ByVal e As … | |
First,It feels good being here guys in such a great community that offers loads of help & support to most kinds of problems facing users who use their PCs. Anyway,my problem is that I used to use some of kind of a website,a private torrent tracker that recently banned a … | |
Hi, I have a datagrid with 2 checkbox columns [Code] <Columns> <asp:TemplateColumn HeaderText="Part A" ItemStyle-HorizontalAlign="Center"> <ItemTemplate> <asp:checkbox runat="server" ID="[COLOR="Red"]partOne_Edit[/COLOR]" checked='<%# DataBinder.Eval(Container, "DataItem.partOne") %>' [COLOR="Red"]Enabled = '<%# IIf(DataBinder.Eval(Container, "DataItem.partOne"), "True" ,"False" )%>'[/COLOR]></asp:checkbox> </ItemTemplate> </asp:TemplateColumn> <asp:TemplateColumn HeaderText="Part B" ItemStyle-HorizontalAlign="Center"> <ItemTemplate> <asp:checkbox runat="server" ID="[COLOR="Red"]partTwo_Edit[/COLOR]" checked= '<%# DataBinder.Eval(Container, "DataItem.partTwo") %>'></asp:checkbox> </ItemTemplate> </asp:TemplateColumn> </Columns> [/Code] … | |
Hi all, im new in this forum ;) I have a problem here with crystal report. I have building report in web (asp.net 2.0) using crystalreportviewer control. I used crystal report 10 for the report. I have succeed to view the report. But, if i press the print button, it … | |
hi, to all ...im trying to code on a login page...im suppose to have a userid and a password textbox. i dont know how to code . i was only able to code as below and i dont know how to proceed. [code=asp.net]<asp:Label ID="lblUserID" runat="server" Text="USER ID"></asp:Label> <asp:TextBox ID="txtUserID" runat="server"></asp:TextBox>[/code] … | |
hi, there...i need help.im not sure if my codes are appropriate.. [code=asp.net]<asp'Label id:"lblreport" runat="server" text"type of report"></asp:Label> <asp:dropdownlist selected="true" value="annually"></asp:ListItem> <asp:dropdownlist selected="true" value="Monthly"></asp:ListItem> <asp:dropdownlist selected="true" value="weekly"></asp:ListItem> <asp:dropdownlist selected="true" value="Daily"></asp:ListItem> </asp:dropdownlist>[/code] im getting error telling 'cannot have multiple selection'. | |
Hi Guys, i'm newbie in .net area. now i confuse one things is : i have a variabel is use at all pages in my web site. so how i set this variable in one page, so that every time when i need this variable, i can use this and … | |
hi, there...im coming with these codes...and i am not sure whether these codes should be after <head> or after <head>. [code]<script runat="server"> Sub Check(sender As Object, e As EventArgs) dim i mess.Text="<p>Selected Item(s):</p>" for i=0 to check1.Items.Count-1 if check1.Items(i).Selected then mess.Text+=check1.Items(i).Text + "<br />" end if next End Sub </script>[/code] | |
I have an application where i need to show 2 frames. the top frame shows 2 windows media players, one that shows the video of a lecture and the other shows the video of images for the same lecture. In the lower frame i want to show all the imagesassociated … | |
frnds, can anyone know how to build dynamic page in asp .net with CSS ? actually I am using C# and I made a Page with CSS.now I face the problem that when ever i change my project to another Computer it's resolution has been changed. thanks |
The End.