12,085 Topics

Member Avatar for
Member Avatar for sandeep210

[CODE]<?xml version="1.0" encoding="utf-8" ?> <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" namespace="Samples.Controllers" schema="I_USER" assembly="Samples" > <sql-query name="PROCEDURE1" callable="true"> <!--<return class="empdetails.cs" />--> <return-scalar column="iusrfname" type="String" /> <return-scalar column="iusrlname" type="String" /> <return-scalar column="iusrlinname" type="String" /> <return-scalar column="iusremailid" type="String" /> <return-scalar column="iusrmobileno" type="String" /> <return-scalar column="iusrrmrks" type="String" /> <!--<return-scalar column="iusrcreated" type="DateTime" />--> call PROCEDURE1(:pr_userid,:iusrfname,:iusrlname,:iusrlinname,:iusremailid,:iusrmobileno,:iusrrmrks)<!--,:iusrcreated)--> </sql-query> </hibernate-mapping>[/CODE]

0
111
Member Avatar for sniigg

Hi, I have a html document when i run in Internet explorer i am getting the desired output(j query working fine). But i copy pasted the same code in aspx page...the same code is not working properly...

Member Avatar for sniigg
0
200
Member Avatar for ashab27

hi, I have 5 images and i want to do that is should come one by one without click on anywhere and without refresh the page also. how can i do that in page load event in asp.net (C#) plz tell me....................

0
63
Member Avatar for rohitmanhas_12

I need to control timeout values for each user. Im having trouble to make it work. When the session timouts out I want to redirect the user to the login page...cud anyone help me with this..

Member Avatar for kvprajapati
0
62
Member Avatar for Anterko

Hello. I have a nested GridView inside of a DataList. I need to enable the paging control of the GridView, but I have no idea where to put the code for it to work. Also I would like to create a function which will do the following: when a user …

0
87
Member Avatar for jitendra_25

I have used a javascript to display a countdown timer for 60 min. like in an online exam. It works fine but when i refresh the page on which timer is displayed then the timer value again resets to 60:00. So, if there is any solution to prevent this please …

0
54
Member Avatar for Ajith S Kulgod

Hi , I have created an windows setup project using Microsoft Visual Studio 2005 . I have included the uninstaller utility also . After Uninstalling the application from the uninstaller utility , the default location of the windows setup project is not deleting . Can you give a solution such …

0
58
Member Avatar for kanuri1

hi i wants to import gridview data into excel format.. here iam writing the code but here iam getting the error as "Control 'GridView1' of type 'GridView' must be placed inside a form tag with runat=server." here my code is given below please correct the code......... [CODE]Protected Sub Page_Load(ByVal sender …

0
42
Member Avatar for jellybeannn

Hi can anyone please help me, I've got a gridview populated from a database, when the download button is pressed this is exported to excel, what I would like to do is to hide the gridview, it must not show on the aspx page but the database must still export …

Member Avatar for kvprajapati
0
96
Member Avatar for bhavu4u

[QUOTE]I have a form with textbox. Besides this textbox i should have imagebutton / something which on clicking will open a popup window (lookup). This popup window will have UserId and Usernames (from db). So when the User selects one from this , the UserId should get selected in the …

Member Avatar for kvprajapati
0
485
Member Avatar for Batoul88

Having a bit of trouble here. I know that if you want to use a fileupload control inside an AJAX update panel then you need to create a trigger for the control that performs the uploading postback to the updatepanel, but the problem is, I have an update panel that …

Member Avatar for rohand
0
93
Member Avatar for virang_21

Hi I am using ASP.NET to upload files that is to be stored in MSSQL Server 2008 as varbinary(MAX). I have issues with opening scanned pdf files once users upload them. The issue is happening very randomly (say 20% of the files cannot be opened .). It seems something is …

0
70
Member Avatar for kwazy2010

Please i need some suggestions on how to develop a web based forum application...am not sure if to use ASP.net or php...

Member Avatar for SheldonC
0
162
Member Avatar for SDS20

Hi, im having a problem with a custom control in asp.net I've googled but I cant find any solution, maybe the people here can lend me a hand. Here's the code [CODE] public Table generateControls(GeoData geodata) { Table table = new Table(); Label StrAddress = new Label(); Label Localty = …

Member Avatar for SDS20
0
126
Member Avatar for firstimer

Hi all, I am new to C# and the visual studio express environment. I have a button on this web page, when it is clicked a method assigns a new random number to a variable but I want new clicks to add numbers to what was in the variable and …

Member Avatar for firstimer
0
134
Member Avatar for rico196

Hy, Let's say that I have class Node with some parameters Node[] child's, string id, string content ... This class is like a another storage for data from mssql database. And that web-application is running on IIS server and is written in ASP.NET C# Now when one user open that …

Member Avatar for Ramesh S
0
294
Member Avatar for jellybeannn

Hi on my localhost the website works fine, but when I transfer it onto the web I get this error, please someone help. [CODE] Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details …

Member Avatar for Ramesh S
0
227
Member Avatar for kunkka17

hi,, i have problem run the asp.net application through IIS. I have made virtual directory for the application folder. when i try to 'Browse' the virtual directory, then the Error show up. 'You are not authorized to view this page' 'You might not have permission to view this directory or …

0
87
Member Avatar for celinehgl

Hi guys, The codes below is running perfectly fine. But I have a problem - if there are no records found in the database, my dropdownlist will not display nothing. However, I want it to display something like "no records found" instead of havng it blank Can someone tell me …

Member Avatar for kvprajapati
0
166
Member Avatar for sanbal

Even I installed asp_regiis . I am using Visual Studio 2008 v3.5 I am facing an issue while building a web project. I have added the controls in the design window as [code]<td align="left" valign="top"> <asp:DropDownList ID="ddlCategory12" runat="server" CssClass="dropDownList" AutoPostBack="true" OnSelectedIndexChanged="ddlCategory12_SelectedIndexChanged"> </asp:DropDownList> <asp:RequiredFieldValidator ID="RequiredFieldValidator6" runat="server" InitialValue="----Select----" CssClass="validator" ErrorMessage="Please Select Category" …

Member Avatar for sanbal
0
98
Member Avatar for kiranbvsn

I am having two dropdownlists that are interrelated, in which one is vertical ddl and the other department ddl in a grid view if we select the vertical ddl then corresponding departments have to appear in department ddl. I've written the code like this In footer of gridview i successful …

Member Avatar for Sals
0
101
Member Avatar for Dhammakirty

how can we acces properties (eg.employee id,name)defined within a dll to a windows form. someone can help me.......

Member Avatar for Sals
1
139
Member Avatar for adobe71

I want to generate non-repeated random number. I tried the following code but it generates repeated random number. [code] protected void Button1_Click(object sender, EventArgs e) { Random rnd = new Random(); int n = rnd.Next(1, 100); Label1.Text = n.ToString (); } [/code]

Member Avatar for Freon22
0
191
Member Avatar for ravin26

hi, I want to know how can i allow user to download an mp3 file on his click in asp.net vb.

Member Avatar for adobe71
0
100
Member Avatar for kaivalPrajapati

How to use for Adrottetor in my web site? pl z... all about discus and give any Essy example.

Member Avatar for adobe71
0
74
Member Avatar for jobojo

Good evening everyone and hope you all had a good weekend. I am working on a site which allows the user to search database records based on entering either a reference number of a person' last name and then clicking the submit button. This brings the user to a results …

Member Avatar for kvprajapati
0
232
Member Avatar for sbr

hi im new to asp.net...im using gridview hyperlink...my prob is to view the hyperlink value in the next page label box while clicking the hyperlink in gridview...

0
49
Member Avatar for psyb0rg

This has taken many hours of mine. I have to get this .Net app to run on an XP system. Someone seems to have messed up some files so conn.Open() in the C# is causing this error: [CODE]Connection Error:Oracle.DataAccess.Client.OracleException ORA-12170: TNS:Connect timeout occurred at Oracle.DataAccess.Client.OracleException.HandleErrorHelper(Int32 errCode, OracleConnection conn, IntPtr opsErrCtx, …

Member Avatar for debasisdas
0
2K
Member Avatar for Pankaj18

Hi, I am using following code to Highlighting keywords in a text or resume. My code: // al is an Arraylist which have keywrods as .net, java, xml... [code] al = (ArrayList)Session["keyWords"]; for (int i = 0; i < al.Count; i++) { if (s.Contains(al[i].ToString().ToLower()) || s.Contains(al[i].ToString().ToUpper()) || s.Contains(al[i].ToString())) { //s …

Member Avatar for Pankaj18
0
108
Member Avatar for Dhammakirty

Ihave to create application split into BO & UI 1.create a new dll 2.try creating a class that has all properties required for database table(eg-employee table) 3.create strongly typed data table to hold skill. 4.integrate BO & UI(using referrence.)

Member Avatar for kvprajapati
0
66

The End.