13,153 Topics
![]() | |
Hi everyone, I've got a DropDownList in Product.aspx when the add to cart button is pressed the value selected is passed onto a stored procedure. What I need help with is in ShoppingCart.aspx I want the selected value on the previous page to be the index on this pages DropDownList. … | |
Hi, everyone. I am having difficulty with the following: I have a form with several RequiredFieldValidator controls on it. My user can take path 'A', down which all of these apply, or path 'B', down which only [I]some [/I]of them apply. How can I 'disable' some of my validators (not … | |
Hi i hope someone maybe able to help me as i've been trying all sorts of things to get this to work for days now...your my last resort. i have a gridview that displays picture that are uploaded by users...my problem if a user uploads a picture. it won't show … | |
Hi. I m having trouble with a small method I wrote. Would be nice f someone can help me. this is my method:- [code] public IQueryable getCustomerOrderList(DateTime dt) { var customerList = from p in dc.CustomerOrders where p.OrderDate == dt && p.OrderStatus == true select new {p.aspnet_Membership.aspnet_User.UserName,p.OrderNo,p.OrderDate,p.Note,p.DeliveryStatus,p.DeliveryTime }; return customerList; … | |
[b] Split from - [url]http://www.daniweb.com/forums/post1150948.html[/url] [/b] I am having the same error [QUOTE=lqdo;874605] The type specified in the TypeName property of ObjectDataSource 'ObjectDataSource1' could not be found. [/QUOTE] Could you please give more information how to solve this problem. [QUOTE=lqdo;874605] I have figured it out. I was running the webpage … | |
I am developing a project in ASP.Net. How to retrieve data using C# from certain table (SQL database) based on user_id after user log in. And how to display the data into text box and label after user click Show button? | |
I am developing a project in ASP.Net using C#. I don’t know how to take data from other table (SQL database) in the same project and save the data into another table using C#. Let say that I have two table that is registration and user. In the registration table, … | |
hi i wants to create an dll file for displaying selected data form database by using a gridview. for this iam creating a dll file , in that how to declare gridview1 ,,,, here my codeing is given below ..... please correct errors.... [CODE]Imports System Imports Microsoft.VisualBasic Imports System.Web Namespace … | |
Hello Developers, I'm trying to build a news website in my own language (not english) in asp.net. Is there any article or magazine which u can send describing how to develop a news website in asp.net. I was trying to develop some parts of the site but I'm stuck now. … | |
I,m a novice in ASP.net programming. I wonder how to use functions and events associated with each control. I have seen few books and couldn't get it. Can anyone help me out.?? | |
Hi all, First time poster, but I'd like to ask a simple question in ASP.NET C#. I have a function that sends queries to an SQL Server. It takes a while, so I'd like to display the details to the user. Something simple, like "Sending x out of 12345 total … | |
I am new with ASP.Net and C#. I have problem with drop down list. How to declare drop down list and how to save user selection from drop down list into SQL database using C# ? | |
i have the project in mcm Forum Managment System. but i dont know actually what i do or which modul i use or whitch type of forum managment system i devloped,please help me if you know about this project.my project submited date is20-3-2010, | |
Hi friends i am trying to bring a data from the field in an checkboxlist. I have successfully done this. Now i am not able to get the values of selected items...........plz help me i am using following code to bind checkboxlist with my database [code] Public Sub getchkbox() Dim … | |
you can provide me any project which is most simple. e.g. online mobile shoppy | |
problem: On the parent page, I have a textfield and an image icon.on clicking the image, a popup (child) should open. The child form has a textbox ,a listbox and a button Go. By default, the listbox should be populated with employee names. When the user types a letter, the … | |
Hello, I am currently using a datalist to update the database with a textbox control. The problem is that when I am pressing "Edit" and entering values in the textbox and when trying to update the database, the database is not getting updated with the entered value. Could someone please … | |
How to save user input from text box and radio button to the SQL database using C# in ASP.Net? Please help me... | |
Hi all, I have used outlook 2007 to make a mail from one of my button event. The event in firing and working exactly when I make my VB.Net code debug (Outlook Interface opens as required). But I make the same code uploaded on Server and the on the required … | |
I am creating controls which are added to the page at run time. As these controls are added I separate them into a UL/LI list by injecting literals assigned as (<ul>, </ul>,<li>,</li>). The page in question uses a master page template. The ul/li function is called in the page_load event … | |
I have used datagrid to display questions I am to build answers pattern now I need to bind data with Labels to display answers On questions change means question selected answers should display according to Question only!!!! means on question change answers should also change | |
how can i connect VS to xampp???im having trouble here...oh please... | |
I am using Visual Studio Web Developer 2008, CSS 2.1 Browser Firefox 3.5.8, IE 6.0.2900 I created a master page following tutorials elsewhere and the problem mainly comes with the Menu bar, I created a custom menu bar to suit my needs, rather than using the inbuilt menu, but i … | |
Please provide a sample stateful webservice in java which would be accible in both java and .net clients. | |
Good morning, I've searched the web for a week to find a solution to a problem, but I can't figure it out, so now I'll try to post directly what the problem is and hope that someone could explain me how to go ahead. I'm new to Asp.Net, and some … | |
hi anyone please give me the dll code for converting date format mm/dd/yyyy into dd/mm/yyyy. here iam using asp.net with vb.net... hi it was very urgent please help me..... | |
Hi, I tried so much working with this to get distinct Words and their count. I'm using ASP.NET 2.0. And i also googled so much. I need HELP from anyone to get the required output. 1)Ex(String): The DOTNET is Very Cool! The Best. 2) Capture all the sequences like Spaces, … | |
I'm currently working on some ajax polling stuff and I don't want do pass through all the process if nothing has changed in the xml file I'm using for my asynchronous process. However after each polling I want to set the value DateTime.Now, but cannot do it with [CODE]Request.Form[ "lastPoll" … | |
Hi, I am using the trace facility to find the viewstate size of controls on postback. I have added a label , a textbox and a submit button to the webform. However after posting my page and viewing the trace.axd page I find that the viewstate size bytes and controlstate … | |
Hi All, Please tell me how i can call a web service from an HTML page using javascript which works fine on both IE and fire fox.I was successful in calling a ASP.NET web service using javascript in Internet Explorer (using service.useService method).Unfortunately the service.useService method is not working in … | |
Hi I am trying to use web services for the first time. I am using .net 2.0. I am tring to get what is essentially an array of data. This approach would work. [CODE]Dim test As New ArrayList test.Add("one") test.Add("two") test.Add("three") Return test[/CODE] The only problem here is that I … | |
is there a way to set a set a dynamic page size for gridview? for instance, i am choosing 10 from the properites window for PageSize, but I would like to have a form field on the page where the user can type the number of records they would like … | |
Hi, I want to read all content of PDF file including text and images in to the html file and after that i want to edit that html file and again i want to export that html file into the PDF format. Please provide me any help. Thanks | |
Javascript is not recognising any of the hidden variables on this web form. It simply reports them to be null. I tried declaring a new variable without "runat=server". No luck. <html> <head> <script language="javascript"> function Print() { alert(document.getElementById('hdnMyHidden')); alert(document.getElementById('hdnMyHidden').value); var strmyCodes = document.getElementById("hdnmyCode").value; var strmyDesc = document.Form1.hdnmyCode.value; alert(strmyCodes); alert(strmyDesc); alert('hello … | |
Hey guys, When I bind my data to the GridView, it populates the GridView with the correct number of rows from the database, but the rows are empty. Do you know how I can get the data to appear in these rows? Please look at the attached picture to get … | |
Hey Guys, I am new to ASP.Net and am having some difficulties with the properties window. I am trying to link a .css file to a master page through the Properties window. According to the book I am using to teach myself, it says that "at the top of the … | |
Hi all, I am trying to produce a UML component diagram for a car rental service. Basically, customers can log onto the website and request a quote online. Then an employee will scan the companies and find the best quote, email this to the customer and it will be accepted … | |
I created a form with two text boxes, when i reload the page those values are not getting refreshed.. Kindly help to clear the values of textboxes when the page is loaded. Option which i used Auto Post Back=False Enable View State=False | |
I've been working on a class which when called pulls images (the actual byte) from one table and then the corresponding product information from another table in a MYSQL database. I then create a dynamic set of controls and add them to the layout. I wanted to place all the … | |
I have created a dataset and from this I want to retrieve values of a column into a variable. How can I do this? | |
I am trying to browse an image and i will search for the images with the same name in the folder called IMAGES . If it exists i just replace it when i run my project using Visual Studio its working fine and image is perfectly getting replaced when i … | |
hi do you know any good tutorial about nhibernate? thanks | |
[b]Split From - [url]http://www.daniweb.com/forums/thread145927.html[/url] [/b] [QUOTE=anish.anick;698556]Hi Unfortunately we cant use these two suggestion since our requirement does not allow to do so. I was able to solve this issue using JSON. Thanks for the information..[/QUOTE] Hi, We are also facing the same issue. It will be great help if you … | |
Hy all, I am sure its very simple thing and I am not just getting it, I am trying to send textbox value from one page to another and its keep giving me an error, basicaly its not finding the class I created in previous page. My web pages are … | |
I have a simple web application with a login page. I am now adding authentication to code that already checks username and password in a database; I use Forms Authentication to write a cookie with an authentication ticket (if that's the right term) to enable a user to access pages … | |
hi, i've got a problem in asp.net i am using a master page with standard headers and footers in all the child pages. i've given the links of the header image in a cssstyle sheet and linke the style sheet in aspx master page, but how to include the header … | |
how to create a controller class? kindly guide me the steps to use mvc without using the template | |
I'm working on the book "Beginning Aspnet E-Commerce with C#", but I have encountered a problem. The tutorial includes a Pager Control, this works fine for all of the products it is just when the a department is selected the pager does not work, only after a Category is selected … | |
I use window server 2008 OS, IIS7. I have pointed IIS to the published Web App. Now when I access the website from inside the network like "http"//localhost/websiteName" I get no errors but outside of the network(i.e., out of intranet) some of my pages throws error as "The page Cannot … | |
Frankly speaking 100's of programmers read the problems and not 5 percent of them give suggestions or answers Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005. when website published not while running through VS 2005 I am trying to export data … |
The End.