13,153 Topics

Member Avatar for
Member Avatar for DCorn

I'm very new at this. Started back in January with dreamweaver, HTML, CSS, ASP.net so I'm in the process of creating my own web site, problem. What I want to do is in the opening load a flash file then transision to the home page after the flash file plays. …

0
71
Member Avatar for rikb53

hey guys basicaly passing a datatable to populate an asp:checkboxlist & i have the choice of horizontal or vertical. is there any other way i can do this to make several rows of these? say, 5 across or place in a div or panel with width constraints that will make …

Member Avatar for rikb53
0
79
Member Avatar for wasifbinrashid

hi, i want to build my final project in asp.net using c# database as SQL server 2005 interface as Xhtml,Ajax,jquery and javaScript i want some cool ideas which are uniqe and unsean thanks

Member Avatar for matthewskyle
0
143
Member Avatar for garrypeace

Here is the ListView I have for the products page: [CODE] <asp:ListView ID="list_view" runat="server" DataSourceID="SqlDataSource1"> <ItemTemplate> <table class="single_product"> <tr> <td> <img src="<%# Eval("image") %>" /> </td> <td> <asp:Label ID="nameLabel" runat="server" Text='<%# Eval("name") %>' /> </td> <td> <asp:Label ID="descriptionLabel" runat="server" Text='<%# Eval("description") %>' /> </td> <td> <form action="comments.aspx" method="post"> <input type="hidden" …

Member Avatar for matthewskyle
0
111
Member Avatar for mm_89

Hi all, well I do not know where to start, I developed ASP.NET websites before but did not use any of the known designing tools. O just made it with a simple design using Visual Studio Toolbox . Now I have a new project where a lot of design is …

Member Avatar for jbisono
0
123
Member Avatar for ssreevidya.m

hai, I want an expression for all alphabets and some special characters like . - ' etc. I use an expression like ^[-_'.,A-Za-z]* but it doesnt contain '. can i get a correct expression for this. Thanks in advance Sreevidya

Member Avatar for shakeb@techwave
0
135
Member Avatar for vuyiswamb

Good Dal All i have this aspx page [CODE]<%@ Page Language="C#" Async="true" Trace="true" AutoEventWireup="true" CodeFile="Default.aspx.cs" 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></title> </head> <body> <form runat="server" method="post" action="https://www.vcs.co.za/vvonline/ccform.asp" > <asp:HiddenField ID="p1" Value="4635" runat="server" /> <asp:HiddenField ID="p2" Value="2" runat="server" /> <asp:HiddenField ID="p3" Value="Some …

0
50
Member Avatar for pinkygirl

hi. I'm completely blank in this. I don't know how to create a simple skin theme and linking it to my webpages. I need your help. Thanks..

Member Avatar for pinkygirl
0
95
Member Avatar for EMIL MATHEW

Can anyone tell me what is the difference between MSMQ in ASP.NET and MSMQ in WCF?

0
44
Member Avatar for Acrotab

I have this programming code: [CODE] <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:IngBergConnectionString1 %>" InsertCommand="INSERT INTO Table1(namn, development, roll, musik) VALUES (@namn,@development,@roll,@musik)" > <InsertParameters> <asp:Parameter Name="namn" Type="String" /> <asp:Parameter Name="development" Type="String" /> <asp:Parameter Name="roll" Type="String" /> <asp:Parameter Name="musik" Type="String" /> </InsertParameters> </asp:SqlDataSource> [/CODE] But I can't connect up TextBoxes with Parameters. Which …

Member Avatar for Acrotab
0
92
Member Avatar for Sarama2030

i'd lyk to upload files into the database via a dataset to first test some conditions. i've maitained the dataset's state between postbacks to add all the rows b4 updating. however the datarow line[CODE]dim autorow as datarow autorow= viewstate("dataset").tables("datatable").newrow ' the dataset and the datatable are all declared [/CODE] pops …

Member Avatar for Sarama2030
0
75
Member Avatar for aplee

Hi Everyone, Can somebody please help me with this. I have this gridview and I have binded it properly, now I have a button and I want to export the data inside the datagrid to excel. I can do this in asp.net because the code is quite easy for the …

Member Avatar for abelLazm
0
165
Member Avatar for samythehunk

this is a part of my code. can anyone help to write database tables to xml format without usingbuiltin function in .net (i.e xmltextwriter and writexml) private void WriteDataSetToXmlFile(DataSet ds, string fileName) { if (ds != null) { string b = TextBox2.Text; string absoluteFileName = Server.MapPath(fileName); System.IO.FileStream myFileStream = new …

0
45
Member Avatar for azam3404

Hi i am using ASP.NET.I want to create Insertquery using Dataset.I have created this using DataSet1TableAdapters; FirstNameTableAdapter first = new FirstNameTableAdapter(); DataSet1.LoginDataTable de = first.InsertQuery(TextBox1.Text, TextBox2.Text); and error is Error: Cannot implicitly convert type 'int' to 'DataSet1.LoginDataTable I also want to use same iN Dataset and want to create Login. …

0
50
Member Avatar for EMIL MATHEW
0
56
Member Avatar for TheBadger

Hey I setup a datalist with a xmldatasource and pull in an rss feed on my homepage I pull in this data ItemTemplate> <%#XPath("title") %><br /><br /> <%#XPath("description") %><br /><br /> </ItemTemplate> I need to access the info from description in my code, to use it manipulate some things on …

Member Avatar for shakeb@techwave
0
66
Member Avatar for niel1826

Anyone Can Help Me?.. I really don't know how to save all values of grid view in database that are checked in grid view, i hope anyone can help me?.. this is really help to finish my project in school. Thanks.!

Member Avatar for shakeb@techwave
0
510
Member Avatar for Shantanu88d

Hi, I have rowcommand function, in which i m obtaining sr_no as datakey from a link button. now i want to know which row was that. How to get row index this way ?

Member Avatar for shakeb@techwave
0
273
Member Avatar for virendra_sharma

Hi , i am getting syntax error in INSERT INTO statement. getting this error on cmdobj.ExecuteNonQuery(); [CODE]string connectionstring = @"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=D:\website\AddContact.xlsx; Extended Properties=""Excel 8.0;HDR=Yes"";"; OleDbConnection conobj = new OleDbConnection(connectionstring); string Query = "INSERT INTO [Sheet1$](Fname, LName,PhoneNo,Email-ID) values (" + TextBox4.Text + ",'" + TextBox1.Text + "','" + TextBox2.Text + …

Member Avatar for shakeb@techwave
0
283
Member Avatar for manraj82

I have got a grid[Grid1] that build its data when a button[search] is clicked, I managed to Ajaxify it by placing it in an UpdatePanel. Before Ajaxifying Grid 1, the grid used to populate another grid[Grid2] and some other controls[Text and Labels] when a row in Grid 1 was clicked …

0
132
Member Avatar for jlivvers

Hi, apologies if this isn't the correct thread for this question! I'm running some web tests on a couple of sites, simple stuff to gauge average page load times etc. However the internet provided here is through a cache and makes the test fail in most cases because the test …

0
97
Member Avatar for manoj_582033

Hi Fiends I am using file Uploader in my form , & trying to save resumes on my server address, i have a folder (resme) which is on server side & now I want to save resumes on that folder i am using server.mappath nut it's not working ,it's giving …

Member Avatar for Sarama2030
0
205
Member Avatar for rb1234567

How do you [B]click[/B] on a [B]caleneder [/B]and it takes you to another page and how can you [B]click a button [/B]to [B]link[/B] you to a [B]database[/B] on another page where you can [B]add, update [/B]and etc things like bookings. Code please would help and your source of where you …

0
88
Member Avatar for Shantanu88d

Hi, I have a microsoft report. I have set @fr_date and @to_date as parameters in query while designing an xsd for it. Now from frontend I want to pass parameters to this report. How to do it from coding. Because i want to do some initial processing on user input …

0
61
Member Avatar for baldwindc

Hi, I have begun using Visual Studio 2010 in an attempt to create a website. The website uses a Microsoft Access Database to store information and then displays this information on a page according to the city. So for Hendersonville it redirects to myDomain.com/Hendersonville.aspx Well, In development i realized the …

0
79
Member Avatar for chris evans

Hi Guys! Been away for sometime but im back now. Im working on a website on ASP.NET. I have trouble with fitting pages within the browser window i.e i have to scroll horizontally to view all the content on the pages. At first i thought it had to do with …

Member Avatar for sgt_toasty
0
179
Member Avatar for YMCMb

Hello everyone My current scenario is creating a mark sheet for students on different module. Module 1 marks are as follows Grade A = 70 marks or over Grade B = 55-69 Grade C = 40 -54 Grade F = 0-39 Module 2 marks are as follows Grade A = …

0
72
Member Avatar for Der_sed

Im returning to Visual Studio after 8-9 years. The world has changed a lot and the first shock Ive gotten is that... XAML is in ..whether its WPF or Silverlight! Then theres WCF, XNA, and what not. Anyways heres my question: Is ADO .Net still relevant or has it been …

0
39
Member Avatar for G_Waddell

Hi I'm writing a site that allows users to download documents securely stored on the network off of the web server. I'm using a com object on the server that we've been using here for ages that fetches the file from the network in a binary stream thus preventing user …

Member Avatar for G_Waddell
0
1K
Member Avatar for adobe71

How can I upload image by checking pixel(ie 100x100) and size(ie 50kb)in MS Access and retrieve from database to show in image control using C#.

Member Avatar for sgt_toasty
0
86

The End.