12,085 Topics

Member Avatar for
Member Avatar for chriscross86

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 …

0
49
Member Avatar for qtarsusy

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.

0
48
Member Avatar for chriscross86

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 …

Member Avatar for chriscross86
0
215
Member Avatar for bhavna_816

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 …

0
69
Member Avatar for chakkilam

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 …

Member Avatar for serkan sendur
0
793
Member Avatar for chriscross86

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 …

Member Avatar for johnny.g
0
73
Member Avatar for johnny.g

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 …

Member Avatar for serkan sendur
0
138
Member Avatar for kischi

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, …

Member Avatar for serkan sendur
0
122
Member Avatar for nokomoli

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 …

Member Avatar for nokomoli
0
121
Member Avatar for saquib189

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

Member Avatar for serkan sendur
0
76
Member Avatar for luckyads

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

Member Avatar for serkan sendur
0
49
Member Avatar for neo.maverick

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 …

Member Avatar for serkan sendur
0
113
Member Avatar for hardikpatel

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 .

Member Avatar for serkan sendur
0
79
Member Avatar for ssreevidya.m

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. …

Member Avatar for ssreevidya.m
0
136
Member Avatar for ricksvoid

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 …

Member Avatar for Jamie Shedley
0
127
Member Avatar for orionize

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 …

0
47
Member Avatar for luckyads

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] …

0
80
Member Avatar for Kian99

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 …

Member Avatar for perumalla1215
0
162
Member Avatar for chriscross86

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] …

Member Avatar for dian69
0
80
Member Avatar for chriscross86

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'.

Member Avatar for sonakrish
0
135
Member Avatar for nokomoli

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 …

Member Avatar for nokomoli
0
124
Member Avatar for chriscross86

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]

Member Avatar for frank@furnes.nu
0
51
Member Avatar for C#Novice

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 …

0
102
Member Avatar for ishan joshi

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

0
35
Member Avatar for chriscross86

to, all....ive come up with this codes on coming up with a registration form.. i debuged it and have not been able to get the output. [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 runat="server"> <title>Courier Management</title> </head> <body> <form …

Member Avatar for chriscross86
0
86
Member Avatar for chriscross86

imcoming up with icons such as home, customer, login, logout...i dont know how the codes using asp.net looks like? please help...

Member Avatar for sknake
0
52
Member Avatar for bhavna_816

I am very new to SharePoint... I need to know two things: 1. How to work on a single website with multiple developers? 2. How to deploy the SharePoint website or webapplication on production server or client machine? Do anybody know some answer or some links which can help me? …

Member Avatar for Fred Mackie
0
82
Member Avatar for nada fouad
Member Avatar for sknake
0
228
Member Avatar for chriscross86

hi, to all...im having problem with the codes below: [icode]<form id="form2" method="post" name="lOGIN" action="Default.aspx" runat="server">[/icode] im not sure the purpose of the method 'post'. why can't i use action instead? when it comes with action, can i use some other names than default.aspx? please help.

Member Avatar for frank@furnes.nu
0
65
Member Avatar for Ramy Mahrous

I want to speed ChechBoxList's getting the selected items, the normal approach is [code=c#] foreach (ListItem li in checkListBox.Items) { if (li.Selected) { } } [/code] but if I've 6000 items in the CheckListBox, that's mean I should go through the 6000 items to know which is selected. Performance POOOOOOR!!! …

Member Avatar for Ramy Mahrous
0
130

The End.