13,153 Topics

Member Avatar for
Member Avatar for Clawsy

I'm building a website in asp.net and c# and I want to have ONE PAGE and to change content of a div -> section. So I used innerHTML for this and it works fine fot HTML pages (one page for each section), but I want to reuse aspx file (asp.net …

Member Avatar for agrothe
0
136
Member Avatar for agrothe

I'm in the process of building a new menu editor for someone at work. I don't know if I've been at this too long or just can't see the forest for the trees.... The database structure's menu items like id, title, parentid, listorder, link, etc I'm trying to write this …

Member Avatar for agrothe
1
278
Member Avatar for web4

first of all i am new to asp.net but i am familiar with vb.net my question is how could i edit some values in datagrid?? for example i have a database some of these values should not be hidden and in that way,i want to set up some value in …

Member Avatar for agrothe
0
55
Member Avatar for thunderman

hello, I 'm still a noob at programming in vb.net I have a little problem. I 'm trying to get my selected rows to another page. I already can select my rows with checkboxes but I don't know how I can pass them through a session to another page. hopefully …

Member Avatar for sada.umesh
0
366
Member Avatar for ssreevidya.m

Hi, I have web page containing 4 ImageButtons for get new id,delete a record,edit the record and save a record.The three of them worked correctly. But when clicking on the save button, a message of microsoft internet exolorer displayed like this: The Web Page you are Viewing is trying to …

Member Avatar for ssreevidya.m
0
102
Member Avatar for sierrasoft
Member Avatar for love_dude1984

hello frendz.. Well, im a beginner in Asp.Net.. im using a win vista home premium & also installed IIS,Visual studio 05. I created a new web site using a Location as HTTP. my prob is whenever i try to run the website, it gives me the error shown in the …

Member Avatar for love_dude1984
0
118
Member Avatar for Potato.Head

Hi to all I'm trying to change the headers of a request, I'm trying to simulate a request from different browsers, languages... The problem is when I try to change the headers I receive an exception(see below), this is the code I'm using: [code] HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); request.Headers.Set(HttpRequestHeader.UserAgent, httpRequest.ServerVariables["HTTP_USER_AGENT"]); …

Member Avatar for Potato.Head
0
2K
Member Avatar for its.romi

I am currently working in asp.net, I m all new to web programming. I have to make a website for our clients, we will give them a user id and password of thier equipment and the details (given by the clients) will be entered in the database. My questions is …

Member Avatar for its.romi
0
162
Member Avatar for ansari.wajid

I have created a user control with name menuUserControl with menu control in it. I have created a user defined property for the user control(menuUserControl) as groupid and when ever I pass groupid to the user control(menuUserControl) in a page, it should use a theme based on the groupid I …

Member Avatar for joelsmith
0
158
Member Avatar for dhakshina moort
Member Avatar for Indianblues

Hi I am trying to add FolderBrowserDialog to my ASP.NET page. So i added a reference to using System.Windows.Forms. Now i have placed a button and in button click event i have written code like this . [code=c#]protected void Button1_Click(object sender, EventArgs e) { FolderBrowserDialog fbd = new FolderBrowserDialog(); fbd.ShowDialog(); …

Member Avatar for Kusno
0
552
Member Avatar for Sarah Lee

[COLOR=#008000]Hi In my application, i would like to use the popup window concept. When the user clciks a button, a popup window should appear, with a textbox to enter a value. on closing the popup window, the user entered value should get saved into a table[/COLOR] [COLOR=#008000][/COLOR] [COLOR=#008000]I am using …

Member Avatar for anthonyqkiernan
0
5K
Member Avatar for aneeshmm

i use the following code to write sql data to xml file. [code]SqlDataAdapter ad = new SqlDataAdapter("SELECT name AS [@label], salary AS [@value] FROM Employee FOR XML PATH('set'),ROOT('chart')", cnn); cnn.Close(); DataSet ds = new DataSet("chart"); ad.Fill(ds,"set"); XmlDataDocument doc = new XmlDataDocument(ds); doc.Save(Server.MapPath(Request.ApplicationPath)+"\\t.xml");[/code] i get the file as [code=xml]<chart> <set> <xml> …

0
41
Member Avatar for sonakrish

hi thr Can any one say me the basic concepts for implementing chat in my web page thanks in advance Happy day

Member Avatar for sonakrish
0
106
Member Avatar for skaterz

Hello.. I dont know where to start with my question. I have a website that displays products (products retrieved from a database). I use Datalist to display these products and this Datalist is linked to a Command in the C# code. Within this datalist I have <itemtemplate> </itemtemplate> tags Between …

Member Avatar for skaterz
0
163
Member Avatar for greeny_1984

i have a requirement where a client has to access the video serveliance in a office thru net. iam a novice in this area.can any body suggest how to do it or which language we can do it.

0
70
Member Avatar for Tables

Hi I am interested in learning VB.NET and ASP.NET Please suggest me any good website where I can learn these technologies at my own pace. Kindly help me. Regards,

Member Avatar for jbennet
0
338
Member Avatar for geordienz

I'm very (no, VERY) new to ASP.NET and I have a server-side app that was written for me by a contractor with whom I have no contact now. Thing is, this app worked perfectly on a Canadian based server but has now been switched to UK. Fooolishly, the Canadian server …

Member Avatar for geordienz
0
102
Member Avatar for ANGanley

I have a web application using vb.net. What I need to do is get my datagrid to update and delete rows in a datagrid. I have a grid view that calls a web service, passing in a query string. The problem I am having is, I am not sure what …

Member Avatar for sedgey
0
147
Member Avatar for johnny.g

Hi all, I am really stuck in this problem. Here it goes:: I am using sql server 2005 and visual studio 2005. I have configured the report server 2008 successfully. I have a web application in which i used to call the reports and display it in the web page …

0
81
Member Avatar for ff4930

Hello, Im new in ASP.NET and have been reading about state management and have a couple of questions, it be great if someone could help me understand. Im having trouble understanding the use of ViewState. It is only limited to the current page, what kind of typical/common use would it …

Member Avatar for greeny_1984
0
371
Member Avatar for madhu_bheemiset

Hi, I want a asp.net control to format text box like Bold,Italic,Under Line, Bullet/number style. Eg: In Gmail ->Compose mail we can bold or do some formatting activites in the body of text. like that. Please help / guide me in this. Thanks for reading...

0
48
Member Avatar for surekhavk

am using custom pagination using the following [code]Case "Prev" If GridView1.PageIndex > 0 Then GridView1.PageIndex = Int32.Parse(GridView1.PageCount) - 1 End If Case "Next" If GridView1.PageIndex < (GridView1.PageCount - 1) Then GridView1.PageIndex = Int32.Parse(GridView1.PageCount) + 1 End If[/code] for first and last its wrking properly but in using this two pagination …

Member Avatar for surekhavk
0
101
Member Avatar for sonakrish

hi all.... I'm trying mailing concept. After entering FROM address, TO address ,subject and body of the message and while clicking the send button am getting [COLOR="Green"] Mailbox unavailable. The server response was: 5.7.1 Unable to relay for "as@a.com" [/COLOR] what wrong i would have made? Plz guide me

Member Avatar for sonakrish
0
120
Member Avatar for edouarde

I'm in need of an example of VB script to handle the following scenario... 1) User fills in an HTML form with a Post action to an URL. 2) The web page successfully sends the data and receives a response from the target post URL. My challenge is to implement …

0
41
Member Avatar for TobbeK

How can I access a variable in Global.asax.cs This is my current nonworking code ..... my code in Global.asax.cs [code] public class Global : System.Web.HttpApplication { public string GlobalMethod = "En exempeltext......."; } [/code] my code in default.cs What I like to do later is to print the result in …

Member Avatar for sedgey
0
124
Member Avatar for BobLewiston

Please forgive what is surely a stupid question: How do I use .Net Reflector to find out which namespace a class, method or property is in, or to see parameter lists? There's no way to enter a character string to tell it what you're looking for.

Member Avatar for Ramy Mahrous
0
95
Member Avatar for itrickski

i have developed a c#/.NET web app using VS 2005 on my local machine. it works fine, and i have copied the files over to the web server (running ASP.NET 2), and it works great with JIT compiling on the server. before moving to production, i would like to compile …

Member Avatar for itrickski
0
499
Member Avatar for chombe

Hi there I'm a newbie to asp.net and trying to learning it doing small forum application. In the application I've a page which lists the available threads in a given topic and I used a gridview. In the gridview the thread's title is hyperlinked and when clicked it will redirect …

Member Avatar for chombe
0
704
Member Avatar for ricksvoid

Ive created a database driven web app in visual studio that works great in visual studio. Ive stored the connection string in my web config file with the following code: localhost/sqlexpress ect ect.... Works great!!! Now how do i adjust the connection string to work on a remote server. I …

Member Avatar for vuyiswamb
0
88
Member Avatar for cyankahn

I have table with these fields article name, article ID and Article Color, Size. I want to write a find function with any of the above field. I will give one example supposes after clicking find a user enters article color as RED and then hits return. The other 3 …

Member Avatar for sedgey
0
72
Member Avatar for kohkohkoh

[COLOR=black]Hi, i am trying to use new method in asp.net for the database connectivity. --> using gridview[/COLOR] [COLOR=black]yet i am facing problem here in the "adding new" area.[/COLOR] [COLOR=black][/COLOR] [COLOR=black]here goes my code:[/COLOR] [COLOR=black][/COLOR] [CODE] <%@ 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"> …

Member Avatar for Clawsy
0
366
Member Avatar for devirell

I am unable to see the grid or the data. Here is my code from my .aspx file. I don't know what I am doing wrong: [code=asp.net]<%@ Page Language="VB" AutoEventWireup="false" CodeFile="resumesearch.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>Resume Search</title> <style type="text/css"> .style1 …

Member Avatar for devirell
0
1K
Member Avatar for snehachoudhary

Hi everybody, I am unable to get the index of the row which is selected by the user through checking a checkbox. After getting the index I want to delete the row directly from the datagrid on that particular index. Please help me out.Its urgent... cheers, sneha

Member Avatar for reach_yousuf
0
246
Member Avatar for muhammad ismail

hi every body, i have worked on windows application in vb.net , but i have no concept of web development using asp.net, can any one tell me the simple code of Asp.net to create a simple webpage containing text "Wel Come to ASP.net". Requirments for this task, also how to …

Member Avatar for jbennet
0
76
Member Avatar for ssreevidya.m

Hi, I stored a file in the folder taht selected using file upload control. When I tried to view this content from that folder I got an error like this. Cannot find the C:\Documents and settings\Terapc\LocalSettings\temporary Internet Files\Content.IE5\6AJ9DNHZ\name.txt file Do you want to create a new file? The code I …

Member Avatar for nhauck
0
85
Member Avatar for sonakrish

Hi.. I hav a database for maintaining emp details. I want to get my EmpID to be generated automatically when my add new button is clicked. That too in C# only...

Member Avatar for greeny_1984
0
123
Member Avatar for zarnimg

i use c1 flexgrid for 1.4 version for vs 2003 and 2.0 for vs2005 now can i register c1 component and flexgrid and truegrid kongaung

0
54
Member Avatar for shobitha

am havin a database to store set of dates n t dates should be distinct. i hav not given t date column has primary key.. codin tat i hav given below doesnt work properly.... can any one tell me wts wrong in it n how to add distinct dates [code=asp.net] …

0
56
Member Avatar for luckyads

Can I make a dynamic XMl which looks like this? [code=xml]<?xml version="1.0" standalone="yes"?> <CMS> <Episode1> <partOne>1</partOne> <partTwo>1</partTwo> </Episode1> <Episode2> <partOne>0</partOne> <partTwo>0</partTwo> </Episode2> <Episode3> <partOne>0</partOne> <partTwo>0</partTwo> </Episode3> </CMS>[/code] If yes please guide as I am using Datatable as node. Thanks, Aditi

0
60
Member Avatar for rajaryan544

Hi, I would like to show a tooltip when the user move the mouse over the first column of my gridview. The tooltip should be bound to a field of the gridview's datasource that correspond to the row being hovered. How can I do that ? Thanks, Raj

Member Avatar for atinobrian
0
81
Member Avatar for atif.muhammad

Hi. I'm new in programming. I have idea backend (database in SQL Server 2000) but no idea for frontend programming. I decide to use SQL Server 2000 and ASP.Net 2.0 Else one share/tell my how to became i familar with ASP.net.

Member Avatar for greeny_1984
0
83
Member Avatar for sonakrish

If i select checkbox in grid header template i shld get all my checkbox in item template to be checked.. can any one help me to do.

Member Avatar for greeny_1984
0
89
Member Avatar for vishakha_ate

Hi All, Please help. I m new to asp.net and want to do as below: Suppose i have 10 items n want to display 3 items at a time. Initially 1,2 ,3 record. After sometime, automatically should dispaly 2,3,4 record n so on. Please help me to do this.. Thanks …

0
69
Member Avatar for shobitha

hi all...i'm a beginner in c#.... for selecting a field from database we use ds.Tables(0).Rows(0).item(0) in vb.... how can i do t same in c#.

Member Avatar for shobitha
0
268
Member Avatar for bindu155

Hii all.. I am Facing a Problem..while Sending a Image,embeded in Mail body...through Asp.net.. My Image is Uploaded in the Web server...and I am using Server.Mappath to Locate the Path of the Image.. I am Reading the File and Storing in the Mailbody... But...after Sending the Maill..I cant View the …

Member Avatar for Aneesh_Argent
0
72
Member Avatar for julseypart

im trying to decide on what provider to use, with there being so many to choose from i dont want to rush into and just get any1. a few i found or were mentioned to me already were: [url]http://www.eukhost.com/windows-web-hosting.php[/url] [url]www.Isqsolutions.com[/url] [url]www.infosaic.com[/url] i need one that has a host with Microsoft …

Member Avatar for SheSaidImaPregy
0
144
Member Avatar for ericstenson

Hi - I was wondering if there is a way to force a postback after the FileUpload1 control has a file... Right now, people his "Browse" select the file then click another button to upload the file. I want to write code on postback to automatically write the file to …

Member Avatar for SheSaidImaPregy
0
1K
Member Avatar for luckyads

Hi Folks, I have this XML which looks like this I have to pull this XML on the datagrid and should be able to insert, update and delete data from the datagrid. [code=xml]<?xml version="1.0" encoding="utf-8"?> <CMS> <episodes> <episode eNumber="1" ptOne="1" ptTwo="1" /> <episode eNumber="2" ptOne="1" ptTwo="0" /> <episode eNumber="3" ptOne="1" …

0
55

The End.