- i want to show a pop up with red color for some words
i want to show variable "keyword name" in red color as well as " Todays Position" word . These both words should be in red color font.
ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "clentscript", "alert('Kindly Enter Todays Position for " + KeywordName + " to Update keyword Target date... ');", true);
Asked
Active
Viewed 93 times
2
-
Google for "Bootstrap modal dialog". – connexo Jun 03 '15 at 06:01
-
You'll need something better than `prompt`. Think about building a simple modal - a `div` absolutely positioned center-screen with a nice drop-shadow works well – Alex McMillan Jun 03 '15 at 06:02
-
1im using visual studio 2008 and my framework is 3.5 i cannot use modern things here.@connexo – Jun 03 '15 at 06:04
-
The .NET or VS version has absolutely nothing to do with HTML & CSS. So you can still use "modern" markup/styling. – mboldt Jun 03 '15 at 06:07
-
i want to show the pop up in back end code . i cant show pop in front end aspx@mboldt – Jun 03 '15 at 06:11
-
like this if (CurrentPos == "") { ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "clentscript", "alert('Kindly Enter Todays Position for " + KeywordName + " to Update keyword Target date... ');", true); } – Jun 03 '15 at 06:12