13,936 Topics

Member Avatar for
Member Avatar for mattkbutler

i am paqssing a url that outputs a image to teh response stream aa the source of a html image control. I need some javascript or possibly ajax of a progress gif to bre displayed while it is waiting for teh image url to complete. standard update panels dont work …

-5
31
Member Avatar for memstick

I'm growing increasingly confused by the '^' symbol. I have been able to track it down on various sites but there is no real "definition" of it and its usage anywhere. I am creating a .NET project these days and I bumped into the symbol for the first time in …

Member Avatar for memstick
0
89
Member Avatar for chinjuuu

Iam also looking for freelance projects to work both in .net and php we are well established if anybody know info for getting real time projects pls tell me ... Thanks&Regards, Sateesh

Member Avatar for griswolf
0
29
Member Avatar for flamio

I deploy our web in IIS but when i try to use the reporting services the message pops up: The request failed with HTTP status 401: Unauthorized. but when i try to build and debug from visual studio i can use the reporting services I think the error doesn't come …

0
38
Member Avatar for oimenoi

I am keep having the "No overload for method 'GenerateSignature' takes 9 arguments" problem. Can you please tell me what is wrong with this class. This code is the sample from the Oauth.net . I think it too old for my asp.net 3.5 or 4.0. My page. [CODE]<%@ Page Language="C#" …

Member Avatar for oimenoi
0
108
Member Avatar for Dimansu

Hi, I am using RDLC in my reports.Can someone tell me the syntax for IF THEN ELSE statement in RDLC? I want to write else if loop in my expression. Thnx in Advance

Member Avatar for chan_lemo
0
3K
Member Avatar for hirenpatel53

[CODE] using System; using System.Data; using System.Configuration; 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; using System.Data; using System.Data.SqlClient ; using System.Web; public partial class _Default : System.Web.UI.Page { static DataTable dtvalues =new DataTable(); protected void Page_Load(object sender, EventArgs e) { // dtvalues.Columns.Clear(); if (!Page.IsPostBack) { …

Member Avatar for Lusiphur
0
137
Member Avatar for coolla

can anyone help as how to use dsn less connection(c#) using ms data acess in dot net. also i need to know where to use that code .. i need my window application which i have created using c # to make it run on different servers.

Member Avatar for finito
0
101
Member Avatar for iamchamith

I was created a web site using asp.net 2.0 with sql server 2005 data base.. That site home page url is [URL="http://foxads.lk/virtualTest/new/home.aspx"]http://foxads.lk/virtualTest/new/home.aspx[/URL] At the development time all code are executed well But at the run time Those error are occur [URL="http://foxads.lk/virtualTest/new/buyproperty.aspx"]http://foxads.lk/virtualTest/new/buyproperty.aspx[/URL] [URL="http://foxads.lk/virtualTest/new/createAd1.aspx"]http://foxads.lk/virtualTest/new/createAd1.aspx[/URL] ect... the connection string is in commen web …

Member Avatar for Lusiphur
0
154
Member Avatar for Lusiphur

I'll preface this by giving a bit of an overview of what I'm trying for here. I'm trying to create a quasi-blog. Something that I can "post" journal type entries directly to a page in my website but without all the luggage that comes with the readily available blog engines …

Member Avatar for Lusiphur
0
164
Member Avatar for coolla

Hey hi friends , I have created a project using Asp.net and ado.net but i dont know as how to connect it with iis server and give the url for that .. so some one guide regarding it so that i can run the website on different servers(intranet)...tat is as …

Member Avatar for coolla
0
119
Member Avatar for Thew

Hello everyone, I have a problem in my Borland C++ project. I need to use my own COM object written in C# (this COM allows me to directly print PDF files) in my another project in C++, but as soon as I call some COM functions which require a string …

Member Avatar for Thew
0
251
Member Avatar for nazeem2005
Member Avatar for ericjohn
0
363
Member Avatar for rara_diamond

hi i want to publish an asp.net website via oracle database .i install iis on windows serever that run the oracle server and move the publish folder website on it . but i can't open website in browser please guide me i think that port number of apache web server …

0
58
Member Avatar for loveforfire33

Hey guys, i want to check if reader.read has a null value, however im struggling to do this.. any ideas? [code] <%@ WebHandler Language="C#" Class="Handler" %> using System; using System.Web; using System.Data.SqlClient; using System.Data; using System.IO; using System.Collections.Specialized; public class Handler : IHttpHandler { public string GetConnectionString() { //Gets Connection …

Member Avatar for finito
0
294
Member Avatar for nmges

I am just done a program on the vb 2008 express, and do the same program on the vwd 2008 express, but as you knew, the codes on vb 2008 express and on the vwd 2008 express are different, I want to know as sample [CODE] Dim strsql As New …

Member Avatar for nmges
0
96
Member Avatar for a_jadon

Hello Everyone, I need help in this issue and if I solve it, I will solve all of my problems in the web program I am building. I have a list of cateogries where I can do 2 things: Start a new list under that category (list of sub categories) …

Member Avatar for jbisono
0
183
Member Avatar for maria_mj

I have try to display selected date from calendar into textbox. But, I got error. My textbox name is txtStart My calendar name is Calendar1 Here is my code.. [CODE] protected void Calendar1_SelectionChanged(object sender, System.EventArgs e) { System.DateTime myDate = new System.DateTime(); myDate = Calendar1.SelectedDate.ToString("MM/dd/yyyy"); txtStart.Text = myDate; } [/CODE] …

Member Avatar for hirenpatel53
0
251
Member Avatar for Weppies

Hi I seriously need help. I have to create a web app using asp.net and c# that sends data that the user put in and then my web app sends data to another company's webservice, process the data and then my web app should display it to the user. What …

0
97
Member Avatar for maluvel

Hi all, I am a java programmer and this is the first time I movw to asp .net. However, there is some points i couldnt find out and hopefully i can have some help from you guys. I have form with is very long so i need to devided it …

Member Avatar for kad1r
0
101
Member Avatar for vladisiv

Hi All, I want to create SMS sending solution from .net framework to send notification to my clients. I found a website where they offer a software that seems pretty suitable, but I want to know more about the company. Has anyone heard about Ozeki Ltd? Good or bad? Their …

Member Avatar for sajidsrq
0
186
Member Avatar for hirenpatel53

[CODE] Protected Sub btnSend_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnSend.Click If txtFromAddress.Text = "" Then MsgBox("Please Enter From Address", MsgBoxStyle.Exclamation) txtFromAddress.Focus() Else If txtToAddress.Text = "" Then MsgBox("Please Enter To Address", MsgBoxStyle.Exclamation) txtToAddress.Focus() Else If txtSub.Text = "" Then MsgBox("Please Enter Subject", MsgBoxStyle.Exclamation) txtSub.Focus() Else Dim mailmessage …

Member Avatar for hirenpatel53
0
130
Member Avatar for PierlucSS

For the solution, I cannot use any postback methods, because this is all working through ajax. The solution need to be implemented in the asp.net code. I have a `List<WebPage>` that contains a list of Links `(List<Link>)` and I need for all the links to bind repetitive information such as …

Member Avatar for kad1r
0
217
Member Avatar for gdp_87

Hi, I have setup a custom membership provider which works fine locally but when uploaded onto the host which is shared btw doesnt work due to the server operating in medium trust mode. The membership provider is pretty overkill for me i just need a really simple login/authentication to protect …

Member Avatar for gdp_87
0
70
Member Avatar for JamesCom

Hi guys, i have this SQL query. "SELECT SUM (TotalTaskCost) AS "CombinedTaskCost" FROM TaskCost;" I want to display the values vertically in a crystal report. How do i programmatically add a field for the artificial column "CombinedTaskCost" generated by the SQL query? Thanks.

0
44
Member Avatar for swornavidhya_m

Hai, I'm having doubt why the code written for ul is like this in CSS style sheet when creating drop down menus.. [CODE] display:inline; display/**/:block; float:none; float/**/:left; [/CODE] It is enough if we mention display and float for once. Why it is used twice with a comment in between? M.Sworna …

-1
68
Member Avatar for eliza81

While creating a site collection or site & workspaces using SharePoint API , you can add these two lines code to enable the publishing feature.Provided below is an example using C# for enabling publishing feature at site collection level. Code in C# // Turn on publishing feature objSiteCollection.Features.Add(SPFarm.Local.FeatureDefinitions["PublishingSite"].Id); // objSiteCollection …

0
146
Member Avatar for Abdul Rouf

I am New in ASP.Net But currently I am working on Desktop Applications. Now i have decided to Design Web Application. I want to develop a Music Web site using ASP.Net and SQL Server as back End. In this Scenario I have a single problem that, if I have uploaded …

Member Avatar for rickymartin3
0
106
Member Avatar for Unbidden Ghost

Hi I am in need of some guidance here. basically I want to know if Java is busy dying a slow death and if it is not what else does one need to learn to have a complete and marketable skill set? java dying slow death: dot net has come …

Member Avatar for Stefano Mtangoo
0
346
Member Avatar for iamchamith

hi friends, I have problem... I use asp.net 2.0 with code behind file as C# and database as MS sql server 2005... I was created some web application...I connected it to the sql server database... now i want to publish in on internet... How i give to datatable[what i was …

Member Avatar for vuyiswamb
0
93
Member Avatar for Tkumar

Is their any way Voice Recording and Uploading in server can be done via Web Application? I'm using ASP.Net for my project. My guess is may be via some ActiveX control....but I'm not sure how to do that. If anybody has something, I would appreciate the help.

Member Avatar for Tkumar
0
90
Member Avatar for iamchamith

I am use asp.net 2.0 with code behind file as the C# i have question..It is... i was created web site and it connect to the database(sql server), at the development time there was no error occur...I could enter data,retrieve data,update data... Then i publish my site...then i connect that …

Member Avatar for vuyiswamb
0
1K
Member Avatar for fawadkhalil

Hi all I have rewritten urls in my application using RewritePath in Global.asax. Locally it works fine, but after i upload my application it shows me "page not found" message. Any body so kind to tell me what actually problem is?

0
89
Member Avatar for MARKAND911

I am calling one process named wiaacmgr.exe for scanning an image. now I want to call an event named "test" when this scanning of file is completed. In test i have a code that renames the scanned file. So how can i do this. Please help me. This is my …

Member Avatar for MARKAND911
0
74
Member Avatar for b1izzard

I had created a report using Reportviewer control(VS2008+MS-Access), the report displays all the records from Access Db correctly but i need to sort the records and display. [B]Sorting by Date(Ascending) that too the records prior to Today's date should not be displayed[/B]

Member Avatar for mnmw
0
126
Member Avatar for twc2102

I am using Visual C++ 2010 and created a CLR EXE debug project and wrote a function, which I am able to call from main in my program. If I take the exact same code and put it in a dll, then I get a compile error from the line …

Member Avatar for twc2102
0
2K
Member Avatar for teckforce

As more and more sites require complex form dialoging, it seems that JavaScript is taking over ASP.NET. Who uses .NET anymore and how sufficient is it? I will admit, JavaScript does have its kinks and perpetual bugs but is far more capable and adaptable than ASP.NET in my opinion. Should …

Member Avatar for teckforce
-1
611
Member Avatar for MichaelWClark

I am working on a project that I want to "+Add Row" to. This will Add a row of four fields that are textboxes. The # of rows is variable so I created a literal control and have been doing [code] Protected Sub btnAddRow_Click(ByVal sender As Object, ByVal e As …

Member Avatar for MichaelWClark
0
300
Member Avatar for vamsikrishna20

Hello, i am working with vs2008 (web application) and I want to copy some content from an excel sheet and and using the clipboard i want to copy the contents in a gridview I have tried using Clipboard.GetDataObject() but no matter what ever i do it is always returning null …

Member Avatar for vamsikrishna20
0
86
Member Avatar for phook

how make a login form with to fields like empname empid. what is the coding proceture.

Member Avatar for vuyiswamb
0
48
Member Avatar for cheinan

I have a multiple web sits asp.net application. In this application different domains using the same pages. All pages inherit from base class named: PageBase wich inherit from System.Web.UI.Page. By using: HttpContext.Current.Request.ServerVariables["HTTP_HOST"] i cen determine what is the domain and then get all the info i need for this domain …

0
45
Member Avatar for lm111

Hi, I need help binding the DataTable to the GridView. Let's say I have this code [code] string filter = String.Format("title LIKE '{0}'", str); DataRow[] rows = dt.Select(filter, "title"); Gridview1.DataSource = ?; Gridview1.DataBind(); [/code] I need to display only the filtered items in the GridView. What do I assign to …

Member Avatar for lm111
0
118
Member Avatar for laghaterohan

Hello, I have many controls on my form ( textboxes, radiobuttons, dropdownlist, checkboxes inside gridview) i want to clear them all once the form is submitted. Please any one tell me how to do it? I am looking for somegeneric method which will help me to solve it... Awating response. …

Member Avatar for dnanetwork
0
261
Member Avatar for ykel

Hello all, I have for two days now been trying to debug what appears to be a serious logical error in my code, now I think I need to make it public. I am working on a dynamically loaded user control, this usercontrol has two dropdownlists, followed by textboxes.The second …

Member Avatar for ykel
0
172
Member Avatar for MARKAND911

I want to give different colors to alternate rows of listview Control in asp.net(c#). How can i do this?

Member Avatar for finito
0
96
Member Avatar for Uzumaki52

Hi, I have table in Database and i need to get the get the values of column and check for the values. If the value in row of that column is null...the imagebutton in grid view should be disabled. I am unable to get the rows values. Can anyone help?? …

Member Avatar for prashantchalise
0
73
Member Avatar for deeptakshd

i m having a webpage which is having a gridview which is displaying data from database........now on the same same web page their exists some hyperlinks namely A, B ,C.....upto Z ............can anybody plz help me out on how to display the new data (clicking of hyperlink A result in …

Member Avatar for prashantchalise
0
283
Member Avatar for loveforfire33

Hi guys, i am populating a datalist with data from an SQL Server database, in the database images are stored in BLOBS. i am getting these images out using a handler. im populating the datalist with data from a table which contains the image and other attributes, which has all …

0
46
Member Avatar for b1izzard

I had created a report using Reportviewer control(VS2008+MS-Access), the report displays all the records from Access Db correctly but i need to sort the records and display. [B]Sorting by Date(Ascending) that too the records prior to Today's date should not be displayed[/B] Another query "Is it possible to edit and …

0
98
Member Avatar for timon_IT

[B]Hi All,[/B] I want to develop a web-based app for capturing data (by different usres), inform/notify reviewers of that data through email (novell groupwise), allow the reviewers to access and edit the data, and notify data capturer through email. My plan is to have the app on the LAN. I …

0
52

The End.