13,153 Topics

Member Avatar for
Member Avatar for culebrin

Hi, I have a table maintenance page, and it has several details rows (and its respective maintenance page for that detail). Then I want to edit the detail using the modalpopupextender. I don't want to duplicate codes using the same that I have already. So I'm wondering, if its possible …

0
88
Member Avatar for nikweb

Hi everyone, Please, I need source code for calculating molecular weight(molecular weight calculator) in asp.net using C#. My application is to allow users to enter molecular formular into a textbox say textbox1 expecting the corresponding molecular weight in another textbox called textbox2. All of these should be stored in the …

Member Avatar for Ezzaral
0
74
Member Avatar for alensole

Hi friends, I would like to achieve a task which can be better understood by pics The url is :[url]www.samachar.com[/url] In the below pic u can see the link to the different news sites. Used rss I guess , but the thing is when we click the link the content …

Member Avatar for Ramesh S
0
159
Member Avatar for coollife

I am having a form where in user enters their details and at the end i am displaying an image and verification code ( which is 6 digit number and i am generating this by using rand function ) The only thing for which i need solution is i want …

Member Avatar for Ramesh S
-1
82
Member Avatar for sakhi kul

hi to all, I want to give user facility to download files from my website. so, user first view it. I saved file path in data table, but I don't know how to change href value dynamically..? or any other solution exist?

Member Avatar for Ramesh S
0
136
Member Avatar for Mongz

Anyone please help me i want to add a splash screen on asp application. I want the splash which can appear for few seconds(E.g when u just log in here in this site)

0
55
Member Avatar for bshyama24@gmail

Hi All, I want consume a web service in my application that is in a different network or different system. If the name of the web service is unknown to me then what is the procedure to find out?

Member Avatar for Ramesh S
0
78
Member Avatar for jaybiet

Hi I am using xml and xslt for generate MS word doc. In xml there is a attribute <Comment></Comment> This comment attribute contains Rich text(HTML formatting) and this attribute is populated dynamically. I generate doc by using following function [code=c#]public static byte[] CreateWord(XmlReader xmlData, XmlReader xsltReader) { // Initialize needed …

Member Avatar for jaybiet
0
204
Member Avatar for coollife

I am retrieving the byte contents from the database I am creating a new file using [CODE] Byte[] bindata = (byte[])dr.GetValue(0); FileStream fs1 = new FileStream("C:buffer.txt", FileMode.Create, FileAccess.ReadWrite); BinaryWriter bw = new BinaryWriter(fs1); [/CODE] Please tell me what to do next to store the binddata byte[] into buffer.txt

Member Avatar for sknake
0
248
Member Avatar for daveyb91

Hello everyone, Could someone please give me a good explanation about what I can do with it? I can't really find it on Google.. Thanks in advance, Davey

Member Avatar for sknake
0
351
Member Avatar for Blaine Tuisee

I have a web based application and i want the objects (i.e. textboxs, labels) to be locked into position. If i resize the window it rearranges everything amd starts looking sloppy. Any help?

Member Avatar for serkan sendur
0
143
Member Avatar for carobee

How do i update a database from dataset. [code]SqlDataAdapter.Update()[/code] is not working

Member Avatar for ggl0rd
0
224
Member Avatar for tryongliph

hello everyone, this is my first post. i'm working on something that seems quite simple but i don't have the know-how. i want to populate a gridview in a web application with a field selected from a drop down list. basically, once you select an item is selected from a …

Member Avatar for tryongliph
0
297
Member Avatar for timmasarthy

[COLOR="Red"][I][/I][/COLOR] hiiiiiiiiiii ds is kiran as a software tester i`m changing my platform to dot net i need ur help how to get a job in Malaysia and pls support me plsss

Member Avatar for sknake
0
37
Member Avatar for shankbond

Hi, I have some problem with using variables, I am making a form in C#?asp.net . Now in my web application form I am having two controls on web page (dropdown, button); depending on the selection in the dropdown I have changed some value in a integer variable. [B]PROBLEM:[/B] the …

Member Avatar for dnanetwork
0
132
Member Avatar for mohankumar554

hi, how to save an image into database. ie how to insert an image into database and how to get the image back. i am using the asp.net(C#.net) and mssql server 2000 . so can u tell me the solution.

Member Avatar for mohankumar554
0
439
Member Avatar for sknake

Select One. I just spent about 3 hours deploying an ASP.NET application and it made me wonder what others think.

0
73
Member Avatar for sonia sardana

I have made connection in web.config file,Its working ,I want to just confirmed dat Whether i m doing it in right way or not! Web.Config File- [code] <configuration> <appSettings/> <connectionStrings> <add name="Connection" connectionString="Data Source=(local);Initial catalog=sonia;User ID=sonia;Password=sonia;" providerName="System.Data.SqlClient"/> </connectionStrings> [/code] Code Behind Page [code] public partial class FrmPractise : System.Web.UI.Page { …

Member Avatar for sonia sardana
0
99
Member Avatar for trieucn05

i'm have Error above. I'm try all you answer but not completed. I'm user VS 2005 and .net framwork 3.5 on vista Ultimate Please. [QUOTE]Error 1 Assembly 'AjaxControlToolkit, Version=3.0.30512.20315, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' uses 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has a higher version than referenced assembly 'System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' [/QUOTE]

Member Avatar for cVz
0
87
Member Avatar for bbxrider

the somewhat complex run command built below: cmd = "" & htmlDocExe & " --webpage --fontsize 8 --fontspacing 1.3 -f " _ & """" & outPdf & """" _ & " " _ & """" & inHtm & """" _ & " --datadir " & """" & dataDir & """" …

Member Avatar for sknake
0
188
Member Avatar for elidotnet

(small question - big help)... i have some web form that handle digital print order from website that fill by the company customers. the form including some information about the customer, print information and upload files. After the customer ending fill the form and click send there is a code …

Member Avatar for sknake
0
146
Member Avatar for ritu verma

I know how to fetch the records from DB,But i want to ask u just small thing. SQL TABLE [code] roll name marks 1 Ritu 10 2 Sneha 20 3 Ruchi 30 [/code] CODE BEHIND PAGE Default.aspx [code] protected void Page_Load(object sender, EventArgs e) { cmbRoll.Items.Add("--Select--"); cmbRoll.Items.Add("1"); cmbRoll.Items.Add("2"); cmbRoll.Items.Add("3"); cmbRoll.Attributes.Add("onChange", …

0
57
Member Avatar for progtick

I have an ascx control that inherits from ValidatableUserControl. I have several requiredfieldvalidators on the page, and all of them are getting fired except the one inside an asp:panel This code is inside a <table> [CODE]<asp:Panel runat = "server" ID = "PurchaseOrderPanel"> <tr> <td><div class="txtClass"> <span class="required">*</span> Number: </div> </td> …

Member Avatar for dnanetwork
0
268
Member Avatar for dani_d

I have problem with positioning ModalPopupExtender in the center of the screen when it's PopupDragHandleControlID property is set (without this property it works fine ). ModalPopupExtender is not positioned in the center of the screen. I thinks what causes the problem is the page's CSS layout cause when i disable …

0
67
Member Avatar for sandeep_1987

I want to just bind the dropdown with DB,I have three rows in mine DB.Instead of adding the column data,In mine dropdown System.Data.DropDown is coming three times y So??? [code] using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; …

Member Avatar for sknake
0
87
Member Avatar for atplerry

Hello i want help on saving large text into the database and the structure of the data should be maintain i.e the paragrah,insertion point, list example if i enter a an html code structure in a textbox on saving and retriving it to display i should retain the structure, I …

Member Avatar for sknake
0
127
Member Avatar for SID.SIL

Hi Guys I have a GridView th show my data. When I am including the data I have TextBox and DropDownList.Thesse data are going to populate a GridView using a DataTble. In the update routine I populate the GridView with the recorded data but I can keep on including other …

Member Avatar for SID.SIL
0
245
Member Avatar for Ana D.

Hi, I have a FormView where records can be visualized, edited and inserted. When inserting or editing, I have a CancelButton. In my routine all I have is: [code=vb.net] Protected Sub CancelLinkButton_Click(ByVal sender As Object, ByVal e As System.EventArgs) SitemapFormView.ChangeMode(FormViewMode.ReadOnly) End Sub [/code] When debugging, I could see the routine …

0
57
Member Avatar for laghaterohan

i have a drop down list in my Gridview. I want to poplulate it with the values from the database ... However i am confused how to proceed ......here is my code snippet: In the source i have written the followin code : [CODE] <asp:GridView ID="GridView1" runat="server" AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False" …

Member Avatar for Ana D.
0
122
Member Avatar for daveyb91

Hello everyone, I need to do an assignement for school. But i'm kinda stuck on a bit, so i'm here to ask some help :D Okay, my question: In my C# application I need to make a webrequest to a php page. This worked, but i want the php page …

Member Avatar for daveyb91
0
109
Member Avatar for ritu verma

I have button in td, I want to change the backcolor of button when the mouse move over it .. As we change the backcolor of td, when we moves move over it.Eg Below- [code] <td onMouseOver="this.bgColor='#00CC00'" onMouseOut="this.bgColor='#009900'" bgColor=#009900 style="width: 33px; height: 81px"> </td> [/code]

Member Avatar for ritu verma
0
2K
Member Avatar for diya0076

hi i download ajax tool kit..3.0.30512.1 n also installed .net framework 3.5 n i add the dll file into my project bt when i drop any of the control of ajax it shows the following error: [COLOR="Red"]Error 1 Assembly 'AjaxControlToolkit, Version=3.0.30512.20315, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e' uses 'System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' which has …

Member Avatar for sknake
0
189
Member Avatar for k.vijayakumar

hi friends,when we open gmail compose mail ,we see an attachment link.when we click on that link we select some attachments and then it will be changed to download link. how is it possible . is there any control for that. if there from where i can get it. and …

0
75
Member Avatar for diya0076

i want to change activetab of tabcontainer using timer cotrol.. i have three tabs in <cc1:TabContainer> n want to change automatically at runtime without refreshing the webpage.. it should be like the website : [URL="http://homeshop18.com"] homeshop18.com[/URL] In this at home page images are on different tabs

Member Avatar for diya0076
0
60
Member Avatar for Tess James

Hi.. Am using response.redirect() to go to another page from the current page. But it is giving me the exception "System.PlatformNotSupported",Operation not supported, change the pipeline mode of IIS. Am working in VS 2008,IIS v5.1 Any Help??

Member Avatar for Tess James
0
113
Member Avatar for Ana D.

Hi, In my page I have a formView with <ItemTemplate>, <EditItemTemplate> and <InsertItemTemplate>. In the <ItemTemplate> I have a linkButton "Edit" that, when clicked by the user, should show the FormView in Edit Mode. I have the following: [code=ASP.NET] <asp:LinkButton ID="EditLinkButton" Text="Edit" OnClick="EditLinkButton_Click" runat="server" /> [/code] And in the code …

Member Avatar for Ana D.
0
117
Member Avatar for mederby

I can't get my website to connect to the built-in db for ASP.NET login funtions (ASPNETDB.MDF). I've been trolling multiple forums for weeks now, and nothing seems to work. I've tried every combination I can think of but get some variation of 'cannot open database' or 'login failed'. Where am …

Member Avatar for mederby
0
139
Member Avatar for ChrisPaul

Hello I have been trying to access Visual Fox Pro 9.0 tables using asp.net. I can access the tables using VS2005 by running the app (F5), but cannot access them through any explorer or another remote computer i get the error "invalid path or file name"...I have read its a …

Member Avatar for ChrisPaul
0
62
Member Avatar for teabag99

Hi, I have been asked to develop an application for a coalition of disabled users. It therefore has to conform to accessibility standards. One of the requirements is that pages work with javascript disabled (compliance with old screen reader technology). I wish to use the calendar control but have a …

0
302
Member Avatar for amar_interface

hi guys, i have use listbox control in my appli. i want to get selected items when listbox is bind in display process basically i want selected item when records is in update process

0
90
Member Avatar for Derice

Hi, I am dealing with AJAX UpdataPanel. I created 2 radio button during run time. By default there is a button in the updatepanel. A user will check either one radiobutton in updatepanel and then hit the button. How do i got to know which radiobutton is checked? [CODE] RadioButton …

Member Avatar for Derice
0
97
Member Avatar for k.vijayakumar

hi, when session expires i want to give message and send them to my login page.for this where i have to write the code. thank you

Member Avatar for carobee
0
134
Member Avatar for konczuras

Hello, I'm using the following: Windows XP SP3 dotNet FX 3.5 SP1 IIS 5.1 SQL Server 2008 My application runs from a virtual directory, and it has a .mdf and an .ldf file, which are being attached to my database. Whenever I tamper the database files (attach to ssms, grant …

0
62
Member Avatar for ketchupaholic

Okay, at work I'm having a big disagreement with the project management team who has no database experience at all. Here is the issue. We have 10 product lines, in each product line there are certain number of attribute names, such as height, weight, color, price and so on. We …

Member Avatar for ithelp
0
95
Member Avatar for whitestream6

I am making my website about a radio station, and it's currently PHP-based, but I am testing an ASP-based one on my dev machine. This is the PHP querystring code: [ICODE]<? $i=$_GET['DJID']; switch ($i) { case 1: include("dj1.php"); break; case 2: include("dj2.php"); break; case 3: include("dj3.php"); break; default: echo "page …

Member Avatar for whitestream6
0
114
Member Avatar for mohankumar554

hi, i developed an application ie web application using asp.net 2005(C#.net) and sql server 2000. It is used to store the data in database via excel sheet. ie application contains 3 buttons . if we click on button1 ,it opens the excel sheet and we can enter the data. button …

Member Avatar for dnanetwork
0
94
Member Avatar for saj_amo

hi i have a textbox and a button on my asp.net page i want that when i write any value on textbox and after that when i click on textbox then a click would perform auto on button so how can i do this???

Member Avatar for Ramesh S
0
823
Member Avatar for san_crazy

hi friends, I tried to search few best ASP.Net 3.5 tutorial in google but coudn't find one best for me. If you guys know some online tutorials or books then please let me know. regards san

Member Avatar for dnanetwork
0
83
Member Avatar for elidotnet

Hello, I have 10 lines of FileUpload (1-10) i have some problem during the upload event. When i put 10 files there is no problem and everything work fine. When i put 3 or 4 files i get error message. Looking for help / solution Pllllease. the message is: "Could …

Member Avatar for dnanetwork
0
123
Member Avatar for aravind.s

Hello all, i have a drop down list. When user clicks select button, the value from drop down must be taken,and a web part and a web part zone must be must be created dynamic. everything in code behind. Can some one help pls.

0
49

The End.