13,153 Topics
| |
hi, i need help with this codings. i did this in visual web developer.it is based on jscript and i need to convert it into asp.net.please help. [code=asp.net]<%@ Page Language="JScript" %> <%@ Import Namespace="System" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.OleDb" %> <%@ Register TagPrefix="Header" TagName="ImageHeader" %> <!DOCTYPE html … | |
I have a old web application in VS2003. It has a user Logon but some time it will store worng user Id in database, I can't figure it out what is the wrong. It is not happening everytime only sometime. I am trying to create that condition but It won't … | |
Hi there, I have a div tag and working fine till yesterday. Just now I found out a problem which has to be rectified quickly. I have a div tag. When time out is approaching then we need to pop up the message using div tag. Everything is working fine. … | |
I am trying to create a FileOpen Dialog for my website in C#, whereby i want the starting directory to be my images folder and only want to select .jpg, .png & .gif files. I also want the dialog box to return the address as though the root was my … | |
Hi all, I want to run .ppsm file in slideshow window using c# in web based application without opening presentaion in powerpoint. I was given anchor link like following - <a href="CD-12 Open Value Module EMEA and Latam BlackWhite.ppsm"> Open/Save </a> When I open html page in IE8 and click … | |
I am designing a website using ASP.Net 2.0 and C#2005. I have used a stylesheet for the background and the horizontal menu bar. I am dsplaying 4 menu items horizontally and below that I am displaying a Flash (.swf) banner. The page is being correctly rendered & displayed in IE8, … | |
Hello all mate from daniweb, well today i got some trouble may be someone kind can help me i wanna know how to add scroll bars to the picture box so the we can scroll to view the whole image. | |
Hi, i need to find tutorials or open source projects to build stuff (think it will only be security, which i think that [url]www.asp.net[/url] might be able to assist me in a tutorial, but i also need something that will teach me/let me include on my site to have text … | |
I am having problem getting all the links from a webpage. I have successfully created this using just C#. I used [code] foreach (HtmlElement link in webBrowser1.Document.Links) { string linkItem = link.GetAttribute("HREF").ToString(); [/code] Apparently C# in ASP.net doesn't have System.Windows.Forms so I can't use HtmlElement. I've tried a couple of … | |
I'm working in a CFMX 7 development environment inside our company's firewall. I've developed a coldfusion front-end to access and pass data to a .net web service (also inside the firewall). It's a simple program (.cfm) that allows a user to browse and upload a file to the web service. … | |
How can we remove Twitter user friends using C# API I am using this link methods [url]http://www.keylimetie.com/Blog/2009/5/1/Twitterizer-Simplifies-NET-Integration-with-Twitter/[/url] can somebody give some good link | |
Hi, Not sure if this is the best place to post, please correct me if I should be in another room! We're in the final stages of developing an add-in for Excel which runs on the .NET framework (v2) We're planning on using IntelliLock to protect the source code from … | |
Hi, How do I add a subitem to a listview in WPF? I'm coding in VB and I do not see any subitem in it. Thanks | |
One of the pages in my web application works fine when I start the application from that page, but has some problems if I start from another page, including the Default.aspx page. When I went to investigate the problem, I realized that, if I start the application on the Default … | |
hello i am trying to add webreference by right clicking on project in visual studio 2008 located at webadress [url]http://www.uclocal.com/customerservice.asmx[/url] visual studio finds the webservice but it dont add webreference it gives me error message below The document at the url [url]http://www.uclocal.com/customerservice.asmx?WSDL[/url] was not recognized as a known document type. … | |
Hi, Is there a way to do a mail merge (data coming from sql server) from a web form? I've looked into Word Automation, but for this you need Office installed on the server, and even then the mailmerge might just open on the server. I've also tried looking into … | |
Hi friends, Actually i have to read RSS feeds from Google news URL.I am able to read the feeds. But i am reading the feeds from a for loop which runs for atleast 2000 times. Now the problem is that Google blocks my IP address after 500 iterations, means after … | |
Hi, I have this problem - IIS 7 :confused: and web service installed on. When is url in form [url]http://server/folder/file.asmx[/url] - everything is ok, but once is requsted url in form [url]http://server/filder/file.asmx/function[/url] (generated by MSC design itself) IIS reports 404 - obvouisly something tests if file really exists, but I … | |
Hi, I used to experiment with making websites with ASP and Dreamweaver back like 5 years ago. I am now developing a website with ASP.NET and Visual Studio 2008. One thing I used to like about ASP and Dreamweaver (together) was that after a little bit of going through some … | |
Can anyone put a quick patch on this script I want it to send the email even if a file does not exist right now I get an error if I try to send it with no file [CODE]<%@ Page Language="C#" %> <%@ Import Namespace="System.Web.Mail" %> <%@ Import Namespace="System.IO" %> … | |
Hi! Is there any consensus as to the best way to handle dynamic button clicks? The buttons are being created dynamically and conditionally placed, depending on business logic. Our problem is that on clicking such a button, the postback calls the Page_Load but not the Button_OnClick. I notice that if … | |
i am using vs 2005.can i have rich text box for a web form? i am not finding it in tool box.if rich text box is not possible ,how can i have text box with rich text features in a web form? | |
"Hi..Plz can anybody provide me a samll Asp.net application which is using Crustal Report, which all the main functionality in webform.. plz help me.....my mail id is [removed]" | |
Hello, I am using Visual Web Developer 2008. I added CreateUserWizard on the form. In the CreateUserWizard Control, I want to add Captcha Control. And how can i do this? Thankyou | |
hi all, i want to know how to Implement encrypted transmission of data using ColdFusion Scripting, in asp.net, and, how to Use Cold Fusion for developing web pages. thank u | |
Hello, I have a website that does calculations. I have a textbox that shows the results. I also have a button, and when I click this button I want it to add the results from the textbox into the array. I then have another button and I want to print … | |
Hi guys, I need some help on data binding. The table is shown as below ID Item 03 5 03 6 19 5 19 8 19 3 How do I present the data on a web page (mobile web form to be exact) such that the the ID is like … | |
i am new to the IT field.. i am currently working on Asp .NET... can anyone help me with some ebooks or learning tips?? | |
Here is my code [code] Dim i As Integer Dim arrList As ArrayList If Session("Cart") Is Nothing Then arrList = New ArrayList() Else arrList = CType(Session("Cart"), ArrayList) Session("cart") = arrList Label1.Text = arrList.Count End If Dim s = arrList.Count For i = 0 To s - 1 Dim dvdid As … | |
Good Morning All For you to help me and understand my problem, i will have to explain everything in details. I have a usercontrol with with a textbox, this texdtbox changes values so am trapping the values on textchange. so i have set it to "Autopostback="true"" in the usercontrol and … |
The End.