13,153 Topics
![]() | |
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 … | |
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 … | |
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 … | |
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 … | |
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 … | |
how to convert .aspx file (which is developed for mobile application) to .jad file ? | |
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 … | |
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"]); … | |
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 … | |
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 … | |
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(); … | |
[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 … | |
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> … | |
hi thr Can any one say me the basic concepts for implementing chat in my web page thanks in advance Happy day | |
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 … | |
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. | |
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, | |
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 … | |
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 … | |
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 … | |
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 … | |
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... | |
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 … | |
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 | |
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 … | |
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 … | |
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. | |
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 … | |
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 … | |
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 … | |
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 … | |
![]() | [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"> … |
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 … | |
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 | |
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 … | |
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 … | |
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... | |
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 | |
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] … | |
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 | |
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 | |
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. | |
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. | |
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 … | |
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#. | |
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 … | |
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 … | |
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 … | |
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" … |
The End.