5,691 Topics

Member Avatar for
Member Avatar for Pradeep_G

I am final year student of MCA & doing my internship on PHP Platform, But having interest in ASP.NET , Can u plz guide me...

Member Avatar for AndreRet
0
175
Member Avatar for niel1826

Can you help me in this question, I'm Using ASP.NET 3.5 Framework SP1 and Using MS Office 2010... What will be code in ASP.NET?..

0
48
Member Avatar for sank1986

Hi all, i have to build a website in asp.net while i am trying to build it, i am not able to drag and drop controls on the design page. Please help Best Regards Sanil Khattar

0
47
Member Avatar for robertmacedonia

Hello, I would like to ask a plain and simple question about the Model-View-Controller architecture, in particular its implementation in ASP.NET - should the UML Class diagram for my application include all the controllers and views and their relationships, or should I just include my model classes, i.e. the entities …

Member Avatar for robertmacedonia
0
851
Member Avatar for savitasagar

hi i m genrating report using cross tab. I m showing subject as column and student name as row and marks for row value. But in cross tab we can take summrised field for row value. i dont want to do any summary option on my original field.i want to …

0
57
Member Avatar for mkh110110

i want to use google erth in my proj and i want to have this ability to have some changes in maps if it will necessary in future, for example i be able to change the color of paths in map to show the traffic in the map

Member Avatar for kvprajapati
0
85
Member Avatar for java_programmer

I am trying to write a simple servlet program. But getting the error [B]The requested resource (/servletexam/LoginServlet) is not available[/B]. I have created two servlet classes as follows - [B]LoginServlet[/B] [CODE] public class LoginServlet extends HttpServlet { Hashtable<String,String> users = new Hashtable<String,String>(); public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, …

Member Avatar for ArtistScope
0
155
Member Avatar for zerubbabel
Member Avatar for UberJoker

Hey guys. hope everyone is doing well. I am trying to make a custom asp.net server just for the heck of it. turns out its quite a task!. I managed to get some code off the internet for a simple server, but it doesnt support asp.net pages. I looked into …

Member Avatar for UberJoker
0
179
Member Avatar for mrjimoy_05

Hi guys, How to integrate Facebook to our site, based on ASP.Net (VB.Net)? I want to integrate just for the posting/thread and show it to my site. Just like in [URL="http://www.jubilee.org"]http://www.jubilee.org[/URL], they are using Twitter Widget. Please any one help me, because I am in project to build an alumni …

Member Avatar for Fortinbra
0
130
Member Avatar for omarshoaib
Member Avatar for Knvn
0
80
Member Avatar for umamahesh2020
Member Avatar for umamahesh2020

[ICODE]Dim postUrl postUrl = "http://localhost:8002/XXX.asmx/methodname" Set xmlhttp = server.Createobject ("Microsoft.XMLHTTP") xmlhttp.Open "POST",postUrl,false xmlhttp.setRequestHeader "Content- Type","application/x-www-form-urlencoded" xmlhttp.send DataToSend Response.Write DataToSend & "<br>" [/ICODE]

0
58
Member Avatar for axman1000

I have 3 ASP list boxes. I would like to populate the second list box based on the selection in the first list box and based on the selection in the second list box, populate the third. I would like to do this using AJAX. How can I do it? …

Member Avatar for axman1000
0
1K
Member Avatar for MrCapuchino

Hello I have two files test.aspx test.aspx.cs I have some Drop Down Lists and Textboxes but if I want to use them the .cs file does not recognize there are those elements in the aspx file. For instance, in the page load event I want to get the text from …

Member Avatar for MrCapuchino
0
132
Member Avatar for lewilaloupe

Hi, This is a SQL statement query (so may be in the wrong forum). Any help much appreciated! I have 3 tables in an Access DB (I know!): IndexData is main table with title, description, date, fileid Category table has categories (Cat1) associated to fileid in IndexData i.e. a fileid …

Member Avatar for reygcalantaol
0
188
Member Avatar for omarshoaib

i want to develop profile like facebook in asp.net with c#

0
108
Member Avatar for alam14_mist

[CODE] ListView listView1 = new ListView(); DataTable dataTable = new DataTable(); MoneyReceiptGateway moneyReceiptGateway = new MoneyReceiptGateway(); dataTable = moneyReceiptGateway.SelectDataForListView(narrationTextBox.Text); string[] str = new string[dataTable.Columns.Count]; foreach (DataRow rr in dataTable.Rows) { for (int coll = 0; coll <= dataTable.Columns.Count; coll++) { str[coll] = rr[coll].ToString(); } ListViewDataItem li; li = new ListViewDataItem(str); …

Member Avatar for alam14_mist
0
245
Member Avatar for loganwasif005

hi every one i m doing software engineering and i have basic fundamental know how of all of them i want to select 1 or 2 of them and want to master them i need help and you opinion plz tell me which one is batter and why thanks

Member Avatar for kvprajapati
0
51
Member Avatar for Blaine Tuisee

I'm trying to close and application using C# and ASP.NET. I've tried system.windows.forms.application.exit() but it just refreshes the screen. I tried Environment.Exit(0) but that just ended the application and returned an error in the browser. Please help anyway you can!! Thanks!

Member Avatar for RogR
0
4K
Member Avatar for chris3000

All i wanna do is simple, I wanna display an image from an access database. I try alot of things to no result. Like ascii code or nothing but a blank image with a red 'X'. [B]Here is the code :[/B] [code] <% set conn=server.CreateObject("ADODB.Connection") conn.Provider="Microsoft.jet.oledb.4.0" conn.Open(server.MapPath("test1.mdb")) set rs= conn.Execute("SELECT …

Member Avatar for Derice
0
520
Member Avatar for ProgrammerAt

I have a page signup.aspx where user can register, how this page will find from which page request came from and how it will redirect user after registration to the requesting page, i want to do this using query string but don't know how PLZ SHOW ME CODES. i am …

Member Avatar for Derice
0
111
Member Avatar for game4tress

I think that my website [url]http://www.game4tress.com[/url] has performance issues when dealing with classes. If i let each web page load for some time, it works fine, if when the web page loads i immediately click on a link, some times the page craches and gives me an "unknown error" in …

Member Avatar for Fortinbra
0
75
Member Avatar for adrianSigamoney

This is not working for me asp.net web page. Maybe dumb question: dim tex as new textbox tex.location = new point (150,150)---------this is highlighted as error tex.width = 150 ---------this does nothing tex.height = 22 ---------this does nothing controls.add(tex) ---------this is highlighted as error Where is my textbox named tex? …

Member Avatar for adrianSigamoney
0
107
Member Avatar for axman1000

I have 3 ASP list boxes. I would like to populate the second list box based on the selection in the first list box and based on the selection in the second list box, populate the third. I would like to do this using AJAX. How can I do it? …

Member Avatar for peter_budo
0
348
Member Avatar for kmose

[CODE] namespace CallbackTest { public class Test: System.Web.UI.WebControls.WebParts.WebPart, ICallbackEventHandler { private string callbackData; private Label callbackLabel; protected override void Render(System.Web.UI.HtmlTextWriter writer) { this.callbackLabel.RenderControl(writer); } protected override void OnLoad(EventArgs e) { base.OnLoad(e); callbackLabel = new Label(); callbackLabel.Text = "no callback occurred yet"; callbackLabel.Attributes.Add("onmouseover", "alert('mouseover'); serverRequest('" + callbackLabel.ClientID + "', '');"); callbackLabel.ID …

Member Avatar for kmose
0
132
Member Avatar for loganwasif005

hi, i m not a good designer in my learning project i want to use HTML template in asp.net page i create an empty website and add index.aspx web form now i want to ask is i have to past all the html of the template into <form> tags or …

-1
65
Member Avatar for DotNetAmat

When I try to connect to a data base I am getting the following error. Please help me. Request for the permission of type 'system.Data.OleDb.OleDbPermission,system.Data, Version = 2.0.0.0, Culture = neutral, PublicKeyToken = b77a5c561934e089'failed. DotNetAmat

Member Avatar for muze
0
150
Member Avatar for Fortinbra

In an effort to give back to the community, I'd like to start writing tutorials. I'm just not sure what topics to start with, or what topics are generally needed. I'd rather not duplicate a topic already covered on other tutorial sites, but I know I could put a different …

Member Avatar for Fortinbra
1
224
Member Avatar for shan_cti07

Hi, Currently we are using asp.net 3.5 with sql server 2005. We are display the sql server image in to <img> tage.It's diplay in IE 6 lower version,but in IE 6 higher not working.this is actual coding we are using [CODE] Dim myDataReader As SqlDataReader myDataReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection) Do While …

Member Avatar for Ramesh S
0
202
Member Avatar for muze

hello guys.. I have a gridview in which I show wave file paths and a button control to Play them. Now everything is fine like im getting records (using RowCommand function of GridView) and showing paths. But I am unable to play the sound. I am using <Object> tag embedded …

0
66
Member Avatar for muze

hello guys... I am trying to play a wave file in a small asp.net project. Now I want to embed HTML in asp.net so that I can use [B]<object>[/B] tag of HTML to play the wave file. Following is the code to get row index from gridview, from the row …

Member Avatar for Fortinbra
0
246
Member Avatar for manu_gupta

Dear All, I need to draw a line between any two area's stated in the geographic map( like google map ). From where I can get these kinds of map or can I implement it using ASP.NET/C#. This should be very similar to getting the direction between two places in …

0
42
Member Avatar for daytonasteve

I've migrated a test site to asp.net 4.0 to take advantage of the list renderingmode for a menu. Having the UL and LI should be easier than the table rendering. I'm making progress, (still have work to do, just ignore the odd border) however one issue continues to plague the …

0
36
Member Avatar for Pardeep Kumar

hello sir ... I want to know something about asp... how can i add .swf file into the asp page..

Member Avatar for ArtistScope
0
174
Member Avatar for Sarama2030

i would like a registration form in html to pass its form fields values to an asp.net's form's onload event procedure. how do i access the field values passed by the html form.the idea is to update a database using these values without using asp.net's web controls.

0
69
Member Avatar for nice_candy

hi, plz help me how can i get the return value of mysql stored function from ASP.net with c#. Currently i m using the following code for this purpose [code] string strConnect = "Data Source=" + host + ";Database=" + database + ";User ID=" + user + ";Password=" + password …

Member Avatar for nice_candy
0
215
Member Avatar for haripriyamca05

I want to send simple mail from my web application through asp.net c# code. I have lot of sample codings to send mail but i need a proper guide to enable smtp server in my localhost since i dont have any static ip or web server. My system is in …

0
85
Member Avatar for saravind84

Hi All, I have a ASP.net web application developed using C#. It has got a button on click of which an excel file is shown to the user. User can save or open the file. But this operation takes about a minute to complete. I wish to implement Ajax in …

Member Avatar for khadakbist
0
152
Member Avatar for bevssi

I need some quick help, Please! This is probably very simple but I'm making it hard. My code displays 2 totals for a month, this year and last year. But, if the month's record doesn't exist it picks up the year's start total for which I have a simple If …

Member Avatar for ArtistScope
0
129
Member Avatar for vinayak.v

hi... i have released one application.. now i have to maintain the document for the released application.. which is the best method to write the information such as in word,or pdf or excel or is there any way to keep the document..? so that every one should know that the …

Member Avatar for ArtistScope
0
173
Member Avatar for Majid Sarrouh

I am writing to an Access database by input into a form textfields and click submit i am receiving a confirming new page that my record is submitted successfully. below the fonfirmation message, there is a hyperlink on the expression "return to the form" that when clicked, i am taken …

Member Avatar for ArtistScope
0
183
Member Avatar for aashishn86

is there a way by which i can generate a excel report in asp and create a chart corresponding to it using asp as well...

Member Avatar for ivy3
0
107
Member Avatar for Parth tank
Member Avatar for Arcrammer

I'm looking for cool code editors for Windows 7 Ultimate 32bit. If you have any please tell me! I am using... [LIST] [*]Adobe Dreamweaver CS5 [*]Intype [*]Notepad++ [*]ConTEXT [*]Notepad 2 [/LIST] I don't really give a frogs fat aśś when it comes to how heavy the program is. Whether it …

Member Avatar for Joshua Kidd
0
119
Member Avatar for Parth tank
Member Avatar for blackberrycrazy

in a database for a company,what technology is best for enabling for examples certain staff memebers to make bookings/access the database from any location using a **Browser**? how do i implement this and how can i make it work? please HELP! p.s i have been researching and thinking creating a …

Member Avatar for blackberrycrazy
0
138
Member Avatar for vijeevvv

Hi, I have a gridview in asp.net. Inside that I have a template field control(Link button named "Details" in all the rows). When I click that link button the details of that particular row should be displayed. Say suppose three records are there. When I click the link button in …

Member Avatar for vijeevvv
0
107
Member Avatar for N4JRY

With things slowing down now for Christmas I wish I was the other side of this issue... I believe this is an ASP.net config / web server config issue and I don't quite know where to go from here. I have a two virtual servers; SQL1, WEB1. A web site …

Member Avatar for N4JRY
0
230
Member Avatar for ppatke

hi plz can u tell me is their any API's avalible for 3g to use in ASP.NET plz snd link on my e-mail [snipped]

0
49

The End.