13,153 Topics

Member Avatar for
Member Avatar for prasannav

It is an asp.net web application with following specifications: Wndows Xp o/s, IIS 5.1, asp.net frame work is 1.1, VB is server side script, SQL Server 2000 Enterprise edition. An asp.net datagrid control is dynamicaly populated with sql server 2K database table data by VB Script. The page numbers are …

Member Avatar for serkan sendur
0
433
Member Avatar for vuyiswamb

Good Day All I have a textbox in a userControl and it has a Property "Autopostback" set to true, and as i know , this is encapsulated from the hosting page. now i need to set this property to true so that the Gridview in the Hosting page can recognize …

Member Avatar for vuyiswamb
0
173
Member Avatar for Poojasrivastava

[ICODE]<html> <head> <title></title> </head> <body> <script type="text/javascript"> function read() { var myApp = new ActiveXObject("Excel.Application"); if (myApp != null) { myApp.visible = true; myApp.workbooks.open("C:\\Book2.xls"); } } </script> <button onclick="read();">READ</button> </body> </html> [/ICODE]

Member Avatar for prasanna201
0
106
Member Avatar for tadisaus2

Hello, I have 2 queries, qryDept and qryExams. Because I can not join these queries together so I have to use 2 Record sets in ASP. The NoStudents deduct from NoExams to get Remain. It keeps getting errors at the --oRs2.Open strSQL2, Conn. [code] <% Dim Dept_ID, strSQL2, oRs2, Remain …

Member Avatar for tadisaus2
0
126
Member Avatar for freshfitz

How can I add more fields to get emailed in this script, Is there a way I can just loop through all the fields I can do it asp classic . I tried adding another mail.body but it only sends 1 mail.body [CODE] <%@ Page Language="C#" %> <%@ Import Namespace="System.Web.Mail" …

Member Avatar for freshfitz
0
102
Member Avatar for vuyiswamb

Good Day I have a page that has a UserControl on it and i want to call a Method in the Host page that will fire when a textbox texchanged event got fire. [URL="http://www.vbforums.com/attachment.php?attachmentid=71093&stc=1&d=1242811920"]http://www.vbforums.com/attachment.php?attachmentid=71093&stc=1&d=1242811920[/URL] i want to Invoke the Function the the "[B]Remove Staff [/B]" Button that has been Disabled …

0
72
Member Avatar for neerajpuri83

Hi All I want to send IMs to the customers on my portal when ever they request for an alert. I need to send IMs to AOL, Yahoo, msn, and all other famous messengers through ASP.net code. How do I do that. IS there any API available. Please suggest. Regards …

0
39
Member Avatar for ssreevidya.m

Hi, I have a dropdown list in the headerrow of a gridview. When submiting data to the database, how can i check the value is selected or not from the dropdown list using javascript. Thanks in advance.

Member Avatar for serkan sendur
0
112
Member Avatar for woodstur

Hi all, Apologies to be a pain but I'm relativeley new to .net programming and I need a little assistance please. I have created a login and registration pages using the control for .net 2.0 and tested locally I can add users and login to the site. However, once published …

Member Avatar for serkan sendur
0
87
Member Avatar for asp_see

I am very new to this.. I have used a repeater control and it fetches about 100 records from the database. Inside the repeater control, I am having 4 columns and in one column, I hav used one dropdown list as [code=asp.net] <asp:DropDownList ID="st" Runat="server" AutoPostBack=true OnSelectedIndexChanged="go_change" CssClass=rtd Runat=server> <asp:ListItem …

Member Avatar for asp_see
0
179
Member Avatar for bharanidharanit

Hello, I am using visual webdeveloper 2008, I have created users using asp.net configuration. Now i am having 2 roles admin and users, And i am having 3 pages as login,register,secured So wen i enter the website as admin all these 3 pages must be visible to the user. Wen …

Member Avatar for Poojasrivastava
0
100
Member Avatar for vyasdev2005

I am trying to opening Word file in asp.net application. I Try Following Code For That [CODE] private Word.ApplicationClass WordApp = new Word.ApplicationClass(); protected void Button1_Click(object sender, EventArgs e) { Installation.doc"; object fileName = Server.MapPath("/WordSample/WordFiles/Test.doc"); object readOnly = false; object isVisible = true; object missing = System.Reflection.Missing.Value; WordApp.Visible = true; …

Member Avatar for mail2saion
0
282
Member Avatar for amorphis88

http://server185.jnet.be/$sitepreview/chirolonderzeel.be/kalender.aspx Error: Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its …

Member Avatar for mail2saion
0
263
Member Avatar for bharanidharanit

Hello, I had uploaded my website to [url]www.x10filehosting.com[/url]. When i try to open my website i am getting this error. [ATTACH]10140[/ATTACH]

Member Avatar for mail2saion
0
94
Member Avatar for ssreevidya.m

hi, what is the use of server.mappath(). what is the return value of this method. Thanks in advance.

Member Avatar for mail2saion
0
116
Member Avatar for sniper1983

I was told to write the question here instead of in c# forum, so I post it here as well. Hi.. I am trying to update a webcontrol on a main site from a usercontrol but how can this be done. Let's say I want to update an asp:textbox from …

Member Avatar for sniper1983
0
129
Member Avatar for starsinthesky

hi there! just wanna know why it is necessary to close the DataReader and database connection after use? what are the effects of just leaving it open?

Member Avatar for kvprajapati
0
67
Member Avatar for chester.praiser

Hi all, I'm new to asp .net. I would like to get the value from a GridView when a checkbox is checked. I'm creating an HR eAppraisal System. Need to capture the Employee ID, the CompetencyID and the Evaluation Factor ID I had a checkboxlist in a GridView. The Checkboxlist …

Member Avatar for shefeekj
0
238
Member Avatar for Kusno

Dear all, I use asp:button field in my gridview [CODE] <asp:GridView ID="GV" runat="server" DataSourceID="SDSInHouseRate" Width="100%" AutoGenerateColumns="False" OnRowCommand="GV_RowCommand" OnRowCreated="GV_RowCreated"> <Columns> <asp:buttonfield buttontype="Button" commandname="edit" text="Edit"/> <asp:buttonfield buttontype="Button" commandname="approve" text="Approve"/> <asp:BoundField DataField="Seq" HeaderText="Seq" SortExpression="Seq" /> <asp:BoundField DataField="CurrencyID" HeaderText="CurrencyID" SortExpression="CurrencyID" /> <asp:BoundField DataField="EffectiveDate" HeaderText="Effective Date" SortExpression="EffectiveDate" DataFormatString="{0:yyyy-MM-dd}" HtmlEncode="False" /> <asp:BoundField DataField="Remark" HeaderText="Remark" SortExpression="Remark" /> …

Member Avatar for shefeekj
1
172
Member Avatar for starsinthesky

hi guys, any suggestions you have for a good source (online) of asp.net tutorials? thanks! :)

Member Avatar for shefeekj
0
74
Member Avatar for priyanka_07
Member Avatar for squirell

Hi, I'm really struggling with creating an if statement with the content of a data repeater. I'm looking for somthing along the following lines... <%IF Container.DataItem( "fldExtraImage1" ) is not dbnull THEN <img src="images/Extras/<%# Container.DataItem( "fldExtraImage1" ) %>" alt="<%# Container.DataItem( "fldExtraTitle1" ) %>"> ELSE IF Container.DataItem( "fldExtraImage2" ) is not …

Member Avatar for squirell
0
208
Member Avatar for bharanidharanit

Hello, I am using Visual Web Developer 2008. I am using menu control binded to site map. So when the user role is administrator, i want to remove the menu item from the menu. I used the coding but not working. [CODE]If page.user.isinrole("Administrator") then menu1.items.remove(menu1.items.find("Forums") End if [/CODE]

Member Avatar for bharanidharanit
0
92
Member Avatar for hvvyzqbdhtvqco

Hello all, I've a web application in C# (framework 2.0) that generates some reports. When I was running the application on development machines, everything worked fine. But when I published it to a production server, it started throwing an exception - "Class not registered - SDAVUtil". Here is the callstack …

Member Avatar for mail2saion
-1
47
Member Avatar for squirell

Hi, I have a problem with a data repeater. I would like items with the same ID to appear in one cell not on seperate rows. The table from the code below is... ________[B]RETAILER[/B]____[B]ITEMS[/B]____[B]PRICE[/B] ID=4____Test Ltd____item1____£10____link ID=4____Test Ltd____item2____£10____link ID=4____Test Ltd____item3____£10____link ID=5____Test Ltd____item1____£10____link ID=5____Test Ltd____item2____£10____link What I want the results to …

0
63
Member Avatar for bharanidharanit

Hello, I am using visual web developer 2008. I want to change the Gridview Orientation. (ie) It displays like this [B]Username Password[/B] admin user1 But i want to change like this [B]Username [/B] admin [B]Password[/B] user1

0
48
Member Avatar for vuyiswamb

Good Evening All I have a web Application that is compiling well with no Errors, i have Compiled each separately and worked well excluding the setup Project. i have to be honest, i once use the clean before i rebuilded the Solution and i came across this challenge. here is …

0
53
Member Avatar for aled_l_d

Hi, I am new to asp.net and am having difficulty using a variable posted from a previous page in a select statement. I am posting a variable called "long_course_code" which comes across as AA103X9 to a page using the URL. I can grab the variable in the second page and …

0
41
Member Avatar for bharanidharanit

Hello, I am using visual webdeveloper 2008. I am using menu control which is binded to sitmap. I am having both menus and sub-menus. So when i click the menu, it expands submenu from the side to the menu. But I want the menu to be displayed as such in …

0
63
Member Avatar for something78

Hi, I am student doing my final term project. For my project, I am suppose to create a webpage that controls the a robot, the webpage will send out commands to allow the robot to program routines. The command will be send through serial port via the webpage. I have …

Member Avatar for mail2saion
0
75

The End.