Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #17.3K
~6K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

12 Posted Topics

Member Avatar for hanusoft
Member Avatar for ameenu

Use the below mehtod [code=asp]public static void ShowMessageBox(string message) { if (!string.IsNullOrEmpty(message)) { if (message.EndsWith(".")) message = message.Substring(0, message.Length - 1); } StringBuilder sbScript = new StringBuilder(50); //Java Script header sbScript.Append("<script type='text/javascript'>" + Environment.NewLine); sbScript.Append("// Show messagebox" + Environment.NewLine); message = message.Replace("\n", "\\n").Replace("\"", "'"); sbScript.Append(@"alert( """ + message + @""" …

Member Avatar for jagidy
0
5K
Member Avatar for Jihad

the concept of using classes is to interact with your database tables as objects and this of course will be better and easily when need to update certain row or record then you simply update the object and then save it. this will be of course better than handling this …

Member Avatar for Hosam Kamel
0
66
Member Avatar for dskumar_85

you should manipulate some CSS into your website , also i recommend to use a design tool for your design task instead of VS to have a full design options and capabilities. there are also some templates provided by Microsoft [URL="http://msdn2.microsoft.com/en-us/asp.net/aa336613.aspx"]http://msdn2.microsoft.com/en-us/asp.net/aa336613.aspx[/URL]

Member Avatar for dskumar_85
0
88
Member Avatar for sbv

I'm totally recommended this tutorial for you @MSDN [URL="http://msdn2.microsoft.com/en-us/library/aa479344.aspx"]http://msdn2.microsoft.com/en-us/library/aa479344.aspx[/URL] Also the Data access tutorials at ASP.NET website [URL="http://www.asp.net/learn/data-access/"]http://www.asp.net/learn/data-access/[/URL]

Member Avatar for sbv
0
108
Member Avatar for Vanetha1806

It's not supported in the Upload control to upload directories instead you can compress this directory and upload it as single file.

Member Avatar for Hosam Kamel
0
70
Member Avatar for namsSoftee

Yes it will works , but make sure that the .NET framework is installed on the destination server. and as a better way publish your website from visual studio or package it.

Member Avatar for Hosam Kamel
0
104
Member Avatar for scottmichael

you can also use a SQL datasource and assign the select statment mentioned by SheSaidImaPregy to its select query.

Member Avatar for Hosam Kamel
0
94
Member Avatar for priyamsc

try javascript:window.open(’javascript:window.close();’,'_self’,'’); and please refer to this link for more details [URL="http://www.interwebby.com/blog/2006/02/04/3/"]http://www.interwebby.com/blog/2006/02/04/3/[/URL]

Member Avatar for Hosam Kamel
0
145
Member Avatar for rdaptl

you have many options to do so depend on what suites you Session : [icode]Session["Values"] = TextBox1.Text;[/icode] QueryString : [icode]Response.Redirect("page.aspx?text=" + TextBox1.Text);[/icode] CrossPage Postback : Page.PreviousePage.... Cookies.

Member Avatar for Hosam Kamel
0
89
Member Avatar for psspl

you can use another a[approach by using the new ASP.NET 2.0 control which called MultiView control and set the active view depending on selected dropdown item. [URL="http://www.c-sharpcorner.com/UploadFile/mahesh/Multiview10092005215233PM/Multiview.aspx?ArticleID=ad731f33-820e-4968-89fa-393c43872384"]http://www.c-sharpcorner.com/UploadFile/mahesh/Multiview10092005215233PM/Multiview.aspx?ArticleID=ad731f33-820e-4968-89fa-393c43872384[/URL]

Member Avatar for Hosam Kamel
0
461
Member Avatar for dskumar_85

Hello dskumar_85 , you have to implement your custom way either form client side as a validation or ASP.NET validator or event when the user click submit button to verify that the mail he has entered is not belongs to the excluded id's you have mentioned. Just try to substring …

Member Avatar for Hosam Kamel
0
86

The End.