Click here to Skip to main content
15,905,874 members
Home / Discussions / ASP.NET
   

ASP.NET

 
Generalcan´t print the file JPG with IE7 Pin
csandoval749-Jan-08 9:21
csandoval749-Jan-08 9:21 
GeneralMaintaining State of Web Form Pin
Gamzun9-Jan-08 6:47
Gamzun9-Jan-08 6:47 
GeneralRe: Maintaining State of Web Form Pin
DotNetXenon9-Jan-08 7:12
DotNetXenon9-Jan-08 7:12 
GeneralRe: Maintaining State of Web Form Pin
Gamzun9-Jan-08 7:41
Gamzun9-Jan-08 7:41 
GeneralRe: Maintaining State of Web Form Pin
DotNetXenon9-Jan-08 10:42
DotNetXenon9-Jan-08 10:42 
GeneralCSS to only one textbox Pin
kjosh9-Jan-08 4:48
kjosh9-Jan-08 4:48 
GeneralRe: CSS to only one textbox Pin
led mike9-Jan-08 5:05
led mike9-Jan-08 5:05 
Questionhelp needed in creating a folder dynamically with the folder name as a textstring taken from the text box. Pin
Member 44460549-Jan-08 4:07
Member 44460549-Jan-08 4:07 
Can any one help creating a folder on a clieck of a mouse button ,where i am taking input from a text box and the folder name would be the string value taken from a textbox.

please see the code below:




<%@LANGUAGE="VBSCRIPT"%>

<%
Option Explicit
CreateFolder(Server.MapPath("."+ "test"))
Dim objFso
'# CREATE FOLDER
function CreateFolder(fdirCRE)
Set objFso = CreateObject("Scripting.FileSystemObject")
if Not objFso.FolderExists(fdirCRE) Then
objFso.CreateFolder(fdirCRE)
Else
Exit function
End if
Set objFso = nothing
End function




%>
<html>
<input type="button" ID="buttonCreateFolder" value="Create Folder" OnClick="CreateFolder()" />

</html>

lenin
GeneralNeed regular expression for US Cell Phone numbers Pin
Rocky#9-Jan-08 3:49
Rocky#9-Jan-08 3:49 
GeneralRe: Need regular expression for US Cell Phone numbers Pin
J4amieC9-Jan-08 4:01
J4amieC9-Jan-08 4:01 
GeneralRe: Need regular expression for US Cell Phone numbers Pin
Rocky#9-Jan-08 4:03
Rocky#9-Jan-08 4:03 
GeneralRe: Need regular expression for US Cell Phone numbers Pin
J4amieC9-Jan-08 4:48
J4amieC9-Jan-08 4:48 
GeneralRe: Need regular expression for US Cell Phone numbers Pin
Rocky#9-Jan-08 19:23
Rocky#9-Jan-08 19:23 
Generalarrays of webcontrols Pin
Cuckoo9-Jan-08 0:55
Cuckoo9-Jan-08 0:55 
GeneralRe: arrays of webcontrols Pin
Michael Sync9-Jan-08 4:01
Michael Sync9-Jan-08 4:01 
GeneralRe: arrays of webcontrols Pin
Cuckoo9-Jan-08 20:45
Cuckoo9-Jan-08 20:45 
GeneralHandle all closing ways Pin
samerh9-Jan-08 0:32
samerh9-Jan-08 0:32 
QuestionNamespace for dynamically loaded web user control Pin
Federico Orlandini9-Jan-08 0:29
Federico Orlandini9-Jan-08 0:29 
GeneralRe: Namespace for dynamically loaded web user control Pin
DotNetXenon9-Jan-08 3:43
DotNetXenon9-Jan-08 3:43 
GeneralRe: Namespace for dynamically loaded web user control Pin
Michael Sync9-Jan-08 4:05
Michael Sync9-Jan-08 4:05 
GeneralDisplaying data from SQL Pin
Burim Rama9-Jan-08 0:14
Burim Rama9-Jan-08 0:14 
GeneralRe: Displaying data from SQL Pin
pmarfleet9-Jan-08 1:14
pmarfleet9-Jan-08 1:14 
Generaltype convertion Pin
bigphish9-Jan-08 0:06
bigphish9-Jan-08 0:06 
AnswerRe: type convertion Pin
Federico Orlandini9-Jan-08 0:31
Federico Orlandini9-Jan-08 0:31 
GeneralRe: type convertion Pin
bigphish9-Jan-08 0:49
bigphish9-Jan-08 0:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.