User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 402,562 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,375 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Showing results 1 to 28 of 28
Search took 0.01 seconds.
Posts Made By: u4umang2001
Forum: ASP.NET May 14th, 2008
Replies: 1
Views: 242
Posted By u4umang2001
URGENT:::how to compute a string in c#???

string abc="40+40*4.2%+120";
how can i get the result???
means it should be computed as:::
double xyz=40+40*4.2%+120;


how this is possible????
Forum: C# May 14th, 2008
Replies: 2
Views: 355
Posted By u4umang2001
how to compute a string in c#???

IN C#:::
i have a string
string abc="40+40*4.2%+100"
now how can i get the result????
Forum: ASP.NET Feb 18th, 2008
Replies: 1
Views: 242
Posted By u4umang2001
stored procedure problem

Hi All,

i have table with some fields. one of them is "ID".
now i want to update ID by a given number.

suppose i have 5 rows and the ID are 1,2,3,4,5.
now i want that i should pass a...
Forum: ASP.NET Feb 13th, 2008
Replies: 1
Views: 523
Posted By u4umang2001
datatype TEXT in stored procedure

Hi

i want to use "text" datatype to declare a variable in stored procedure.
how can i do this???
Forum: ASP.NET Feb 13th, 2008
Replies: 2
Views: 258
Posted By u4umang2001
Question stored procedure problem

Hi

i am passing three parameters to my stored procedure.

now in stored procedure i want to execute the query on the basis of given condition.

suppose i m passing para1, para2 and para3.

now i...
Forum: ASP.NET Feb 8th, 2008
Replies: 2
Views: 498
Posted By u4umang2001
Re: TreeView Web Control

you may try :::

treeid.CollapseAll();
Forum: ASP.NET Feb 8th, 2008
Replies: 1
Views: 553
Posted By u4umang2001
Re: can we pass parameter to trigger?

HOW TO PASS THE PARAMETERS TO TRIGGER???
DIRECTLY OR INDIRECTLY.....

HELP HELP HELP
Forum: ASP.NET Feb 8th, 2008
Replies: 1
Views: 553
Posted By u4umang2001
Question can we pass parameter to trigger?

Hi

can we pass parameter to trigger???

if yes please give me an example...
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

if i ll use "new c1f1()"

then wht is the benefit of defining the namespace???

it could be done without defining a namespace...
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

see:::::

==class1 code==
namespace ns1
{
public class c1
{
public c1()
{
}
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

see:::::

==class1 code==
namespace ns1
{
public class c1
{
public c1()
{
}
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

i have done that also...



but now how to call the function?
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

sorry
but i dint get u again...
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

here we are creating the object of the class, i guess so...

but i want to call the functions directly without declaring the object of that class.

see:


i have two classes named class1,...
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Re: including class???

sorry i dint get you...

==="class is user defined"===

i want to include the class

so that i can use the functions directly defining in that class...
without calling using the object of that...
Forum: ASP.NET Feb 7th, 2008
Replies: 16
Views: 405
Posted By u4umang2001
Help including class???

Hi all

how to include more than one class
like we include one class as given below

public class ClsSection:connection


now i want to include one more class
Forum: ASP.NET Feb 6th, 2008
Replies: 6
Views: 968
Posted By u4umang2001
Forum: ASP.NET Feb 6th, 2008
Replies: 6
Views: 968
Posted By u4umang2001
Re: exec command in stored procedure depends on condition

how can i show that message at my .aspx page???
Forum: ASP.NET Feb 6th, 2008
Replies: 6
Views: 968
Posted By u4umang2001
Re: exec command in stored procedure depends on condition

thanks


but i want to display the message also if email exists

then wht can i do for that???
Forum: ASP.NET Feb 6th, 2008
Replies: 5
Views: 961
Posted By u4umang2001
Forum: ASP.NET Feb 6th, 2008
Replies: 5
Views: 961
Posted By u4umang2001
Question trigger example???

Hi

i m working with ASP.Net, C#

i need to have an example of trigger

how to call it from C#, and how to execute???
Forum: ASP.NET Feb 6th, 2008
Replies: 6
Views: 968
Posted By u4umang2001
Question exec command in stored procedure depends on condition

Hi

i want to insert the email into a table,
i pass the parameter to the stored procedure

if this email_id doesnt exists in the table
only then it should be inserted into the table...

how to do...
Forum: ASP.NET Nov 13th, 2007
Replies: 10
Views: 6,389
Posted By u4umang2001
Re: drop down list selected index change doesn't work in mozilla

its ok and THANKS A LOT for that much assistance...
see u later with another problem :icon_wink:
till than bye and take care
Forum: ASP.NET Nov 13th, 2007
Replies: 10
Views: 6,389
Posted By u4umang2001
Re: drop down list selected index change doesn't work in mozilla

if i write on the page
Page.RegisterClientScriptBlock("scriptcode","<script language=javascript src=\"scriptcode.js\"></script>");
Response.Write("<script>alert('hit');</script>");
it shows the...
Forum: ASP.NET Nov 12th, 2007
Replies: 10
Views: 6,389
Posted By u4umang2001
Re: drop down list selected index change doesn't work in mozilla

Hi, i m using the following code but it is not working...

if(!Page.IsPostBack)
{
if(!Page.IsClientScriptBlockRegistered("scriptcode"))
{
Page.RegisterClientScriptBlock("scriptcode","<script...
Forum: ASP.NET Nov 8th, 2007
Replies: 10
Views: 6,389
Posted By u4umang2001
Re: drop down list selected index change doesn't work in mozilla

if i put that function ( which is written in a seperate js file) in the same file then it works...
i have included the js file also, but if this function is written in the js then it is not...
Forum: ASP.NET Nov 7th, 2007
Replies: 10
Views: 6,389
Posted By u4umang2001
Question drop down list selected index change doesn't work in mozilla

Hi

i want to bind a drop down list on the other drop down list selected index change event. i m using the following...
Forum: ASP.NET Nov 7th, 2007
Replies: 2
Views: 720
Posted By u4umang2001
Question background-color:"9E0039" works in IE but not mozilla, solution?

Hi
This is Umang...

i m using background-color:"9E0039" in a stylesheet.css file
it is working in IE but not working in Mozilla fire fox. if i use the color name (eg. GREEN) instead of color code...
Showing results 1 to 28 of 28

 
All times are GMT -4. The time now is 9:38 pm.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC