13,936 Topics

Member Avatar for
Member Avatar for priyankaagrawal

I am working in visual studio 2005,i want to open a new word document on click of button,for that i have added microsoft word 11.0 than also i am unable to import ( microsoft.office.interop.word )namespace.So any one can help me to import this namespace as soon as possible. Thanks in …

0
93
Member Avatar for cassyjack

Hi, Im using Radio Buttons. What I want to do is once a radio button is selected. I want to Redirect/Open another Page. Cant seem to get it to work. This is my line of thought can some one point me in the correct direction? [CODE][COLOR=#0000ff] [/COLOR] void[COLOR=#000000] Page_Load()[/COLOR] { …

Member Avatar for cassyjack
0
139
Member Avatar for amithasija

i want to make a chekbox column in my datagrid,and wants to do some action on checked and unchecked,i am using c# in window application,can anybody help me regarding this......that how to apply these checkbox.?? thanx in advance,, amit hasija

Member Avatar for kapil.goyal
0
94
Member Avatar for Sarah Lee

Hi All, My application requires lot of Date formatting calculations. Here is mynew issue, which i am trying for last two days. Hope someone can help me in this I have startDate as First date of current month endDate as todays date. eg: 2/1/2007 ---- 2/19/2007 Now what I want …

Member Avatar for Sarah Lee
0
107
Member Avatar for JRshack

I'm looking for sample code (AJAX, ASP, JAVA) that allows web users to input questions from a form and when submitted it calls a document (Word, PDF, HTML) and inputs the users answers in the appropriate location of the document and allows them to print the document. Is this possible …

0
55
Member Avatar for M_K_Higa

I want to surround the html results from a `GridView` control with a `<fieldset>` tag. I need to do this on the server side. I have a situation where I need to build multiple `GridView` controls during runtime because I don’t know how many data sets I need during design …

0
67
Member Avatar for prodigy201

Hi ! I am novice to ASP.NET, and learning ASP.NET using VB.NET having version 2003. I am willing to show tabcontrol on my Webform, but I have observed that there is no tabcontrol introduced in ASP.NET (VB.NET 2003). I want to show tab control on web form. I would be …

Member Avatar for nikkiH
0
181
Member Avatar for keon109

Hi, I'm programming a mailmanager in ASP.net 2.0. For this i want to have an option to send a mail with a specific delay or on a specific date. Is this posible in ASP.net or how can i solve this? greetings Koen

0
61
Member Avatar for Laura1234

Hi Everyone: I would like to find the solution for this error. I don't have a strong knowdlege in ASP and the tutorials that I have read in the Web don't help me. Thanks, Laura. [B]Server Error in '/' Application.[/B] [B] [I]Security Exception[/I] [/B] [B] Description: [/B]The application attempted to …

0
63
Member Avatar for hfpg2001

I am runnig a web sevice over a ssl . And when i call the web services say me this error. [B]The underlying connection was closed: Could not establish trust relationship with remote server[/B] [B]I changed the namespace.[/B] [B]I have the framework 1.1[/B] [B]i have the https before the call …

Member Avatar for hfpg2001
0
93
Member Avatar for shikha.ch

I want to select single value from Table and display in lable. I wrote a program :- [COLOR=darkgreen][code] protected static string ConStr = "Data Source=URJIT6;Initial Catalog=Employee;Integrated Security=True"; protected SqlConnection NewCon = new SqlConnection(ConStr); String QStr = "SELECT Username FROM Register WHERE LoginID=' " + LoginIdtxt.Text.ToString() + "'"; SqlCommand SqlCmd2 = …

Member Avatar for shikha.ch
0
121
Member Avatar for shikha.ch

[B]Anyone can help me as soon as possible. I want to create table on my database. i tried Following code Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim ConStr As String = "Data Source=Urjit6;Initial Catalog=MyDB;Integrated Security=True" Dim MyCon As New SqlConnection(ConStr) Dim SqlCom As New …

0
70
Member Avatar for mikefitz

Hi, I need to export data from a DataSet Element to Excel. Does anyone know the easiest way to export the data from the DataSet to an Excel file on the client's machine? Thanks, Mike

Member Avatar for kapil.goyal
0
145
Member Avatar for Hibiscus

Hi, I'm using the following code to download to excel from my datagrid. when i click on the button, the entire screen goes blank. Please help me out.. [code] Response.Clear(); Response.Buffer= true; Response.ContentType = "application/vnd.ms-excel"; Response.Charset = ""; this.EnableViewState = false; System.IO.StringWriter oStringWriter = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter oHtmlTextWriter = new …

Member Avatar for kapil.goyal
0
87
Member Avatar for ramareddy_dotne

I am working on a asp.net project currently in my office.I want to copy this project into my system at home so that I can work on it both at home and at office but [COLOR=Red]my project copied from my office system is not atleast opening in my system at …

Member Avatar for iqbal_2378
0
222
Member Avatar for Aswathy

Hi , I have an application in which html and asp.net is to be linked. In the html page I have a link to the asp.net page. <a href="WebForm1.aspx">Link to Asp.net page </a> But, when I click on that link I get the code underlying the asp.net page displayed instead …

Member Avatar for Aswathy
0
89
Member Avatar for Sarah Lee

[COLOR=#191970]Hi Everybody I am using ASP.NET 2.0 In my application, i want to use session concept I have a user control, in which i have to set the default values for some controls to be session variables. eg: for a dropdown list i am using -1 as the defualt value …

Member Avatar for madmital
0
135
Member Avatar for ssaran

[COLOR=#000000]:eek: Hi all[/COLOR] [COLOR=#000000] Scenario:[/COLOR] [COLOR=#000000]I am creating dynamic PDF reports using XML and FONET. Reports include graph images which are also created on fly. Each time when report is requested graphs are created and saved on the server’s file system to be used by PDF. To save space on …

0
60
Member Avatar for edmicman

I'm sure this is easy, but I'm seeming to have a brainfart or something and can't find any ways to do this.... I have a gridview, which is displaying data from an objectdatasource/tableadapter. One of the columns in the gridview is a UserID. Instead of displaying the UserID, I want …

Member Avatar for nikkiH
0
105
Member Avatar for Sarah Lee

Hi Everybody I am trying to get some function which returns - current month name - current year - date range ( for February displaying 2/1/2007 - 2/28/2007) -year range ( 1 Jan 2007 - 31 Dec 2007) I was wondering, is there any functions for these? I searched a …

Member Avatar for Sarah Lee
0
707
Member Avatar for M_K_Higa

Ok folks. I just found a cool Button property called [inlinecode]Button.PostBackUrl[/inlinecode]. It works fine when you set this property and click on the button -- it takes you the page specified in the [inlinecode]PostBackUrl[/inlinecode] property. At first glance, it looked very promissing for cross-page coding. Here's my problem... I have …

Member Avatar for M_K_Higa
0
2K
Member Avatar for lovduv

***UPDATE Solved*** Needed to change to this <script runat="server"> protected void Page_Load(object sender, EventArgs e) { Page.DataBind(); } </script> and this [code]<script type="text/javascript" src='<%#"http://www.somesite.com/cool.asp?nick=" + Request.QueryString["Nname"]%>'></script>[/code] With the variable Nname from my database via a DeatailsView control. I am really new to asp.net and I feel that I am just …

0
111
Member Avatar for sravankolla

Hii all I am working with ASP.Net 1.1 . I need to edit a column of data in a datagrid control. In order to do that I need a button control on the top of the column(as Header) and once I click it list of textboxes should be displayed in …

0
66
Member Avatar for kapil.goyal
0
59
Member Avatar for Richard Lelle

I am still pretty new to C# and .NET. I am using .NET 2005, and am attempting to use a Gridview. This GV displays data from two tables, one dependant on the other. I cannot, however, get the GV to Edit/Delete a specific column in any row. I was able …

Member Avatar for nikkiH
0
267
Member Avatar for smgtreker

Hi, I would really appreciate some help with disabling the close button (and the system menu's close option) of a MDI child form in C++ .NET. I've scoured the web, and although I can find it in VB .NET, and bits in C#, I can't find anything to help with …

Member Avatar for Lilleman
0
215
Member Avatar for Sarah Lee

Hi everybody I have two listboxes. I have set the selectmode to multiple but when i select multiple items from listbox1, and then clcik ADD button, only one item is getting added How can i add all the selected items at a time I am using Protected Sub btnAdd_ServerClick(ByVal sender …

Member Avatar for Sarah Lee
0
194
Member Avatar for asp_dev

Hi friends help me out in this i want a stopwatch to be displayed in the form...in which the stopwatch must start its process once the button is clicked and reset's its process on anoher button click.Also I need to catch the total time spent from the fist button click …

0
69
Member Avatar for Aswathy

Hi, I have a button click event handler in which i have embedded a javascript code for generating a confirmation box. Based on the selection in the confirmation box a change is to be made in a hidden field having id hdnField. In the same btnSubmit_Click() i have a conditional …

Member Avatar for Aswathy
0
94
Member Avatar for mairtin.obrian

Hello All Im trying to get html saved to a text file after the Url has been entered into a text box Im having difficulties with this can anyone help. I have no problem saving text to a text file and reading text from a file. Thankis

Member Avatar for sedgey
0
105
Member Avatar for sravankolla

Hii I am doing a project dealt with sending SMS .. So i have to control the length of the message to be sent .. But for textbox of Multiline type did not allowing the MaxLength property .. Plz help me

Member Avatar for sravankolla
0
213
Member Avatar for sant

I have just finished developing a website which is working fine in IE but giving some problems in FF and NS.Converting all to CSS is not possible:sad: .Please cite some solutions for this... --sant:?:

Member Avatar for M_K_Higa
0
109
Member Avatar for edmicman

I'm working on an ASP.NET 2.0 app with WSE 3.0, that is trying to connect to a web service that was written with ASP.NET 1.1 and WSE 2. It's close, but when I try to actually retrieve data, I'm getting this error: [QUOTE]System.Web.Services.Protocols.SoapHeaderException: System.Web.Services.Protocols.SoapHeaderException: Server unavailable, please try later ---> …

Member Avatar for edmicman
0
338
Member Avatar for roshan.prakash

hi, i m using asp.net 2.0. how can i send a mail through this using SYSTEM.NET.MAIL namespace. i do not have smpt server address. i want to set smpt address as default .is this possible in asp.net 2000 prakash

Member Avatar for sedgey
0
65
Member Avatar for bhavna_816

I want to create a forum for my website ? can anybody have any idea how to start with or the logic behind this?

Member Avatar for sedgey
0
219
Member Avatar for hkarthik

hi, how do we select multiple checkboxes in datagrid using a checkbox in the header of that datagrid. I went successful in adding each check boxes to each row. Now insted of selecting each checkbox individually i used a checkbox in the header of that datagrid. So when i check …

Member Avatar for hkarthik
0
127
Member Avatar for kapil.goyal

Is it possible to read a file from client side without browsing the file.when user click on upload button the file should uploaded on the server.

Member Avatar for hollystyles
0
66
Member Avatar for roshan.prakash

hi, I m using freetext box dll. i m unalbe to upload image to the webserver through this editor. can any help me???? Praksh

Member Avatar for sedgey
0
66
Member Avatar for Sarah Lee

Hi All, I want to set two textboxes, where I want to set the first day of current month in one textbox, and todays date in the second text box. How can I get the first day of the current month? Thanks In advance

Member Avatar for Sarah Lee
0
125
Member Avatar for rinkuchoudhury

I have to extract attached xml file mail(outlook express) autometically through asp.Net perogramming how cai I do this:?:

0
32
Member Avatar for Aswathy

Hi , I have been trying to create an online exam application and is facing some issue with dynamically generated radio buttons. My problem is discussed below: I have a table with a set of questions.I dispaly the questions on the screen with a set of dynamically generated radio buttons …

Member Avatar for Aswathy
0
1K
Member Avatar for 2thetop

Hi! I'm searching for a video recorder/player that can be integrated with our dating site that is using ASP.NET dating software. Does anyone have any suggestions? We need it for video profile recording. It needs to be a .swf recorder with save function and a player for playback.Able to store …

0
68
Member Avatar for simmy7

It seems there is a bug in IE7. The buttons in a radiobuttonlist have their borders displayed as a solid line instead of none. This doesn't happen when running a project with the radiobuttonlist in vs 2005. It only happens on the hosting companys server (and my client just switched …

0
71
Member Avatar for Sarah Lee

[URL="http://www.aspmessageboard.com/forum/printMessage.asp?M=863793&T=863793&F=36&P=1"][IMG]http://www.aspmessageboard.com/images/printer.gif[/IMG][/URL][COLOR=navy]hi all [/COLOR] [COLOR=navy]I am trying to implement exception handling in my application, where I come accross some questions [/COLOR] [COLOR=navy]I have set the customerror mode to renote only, and defaultredirect to a asp.net page.[/COLOR] [COLOR=navy]1) do I have to comment that out, till i release the project? [/COLOR] [COLOR=navy]2) …

Member Avatar for campkev
0
113
Member Avatar for raheleh

Hi,I want to save a picture in a database(SQLserver2005) and use it the picture in a web form by binding to a control how can I do it?

Member Avatar for sedgey
0
68
Member Avatar for rinkuchoudhury

hi I am working in asp.net but new to xml q: I have some data in xml format. I have to convert the data to SQL table and display the data in web page through gridview through coding. the problem is as i am new to xml I dont have …

Member Avatar for TT4Titans
0
53
Member Avatar for Phoenix777

Hi We are using masterpages in our project as the pages have a common structure. However most of the [B]pages are supposed to have footers in the form of tables[/B]. I could use a user control embedded in the masterpage if the structure of the tables was similar for all …

Member Avatar for sedgey
0
72
Member Avatar for labelle

hi I am making a site. I have a masterpage and content pages. i wish to print some parts of the content page by putting a print button on the page that i wish to print. well the content page has some flash objects, images, some text and a gridview …

Member Avatar for sedgey
0
82
Member Avatar for bhavna_816

I have developed an application in VB.NET console application. when i open a particular file suppose txt(Notepad) file then it shows it as it is when i see the output on console but when i render it to the HTML then the output is unformatted i.e. it does not understand …

0
59
Member Avatar for vermeet

I have xml file for my project which is in vb.net and asp.net. I want to create exe file from the xml file, Can anyone guide me please. Regards

Member Avatar for vermeet
0
93

The End.