Click here to Skip to main content
15,915,019 members
Everything / Named

Named

named

Great Reads

by ASP.NET Community
Step 1:   First we create a webpage named page1.cshtml.Step2: Then we take two Labels and two TextBoxes and a Submit button. (In this example one
by ASP.NET Community
Following will be the example if you would like to use Request QueryString to pass value between 2 CSHTML page.We have have 2 web pages, Page.cshtml

Latest Articles

by ASP.NET Community
Step 1:   First we create a webpage named page1.cshtml.Step2: Then we take two Labels and two TextBoxes and a Submit button. (In this example one
by ASP.NET Community
Following will be the example if you would like to use Request QueryString to pass value between 2 CSHTML page.We have have 2 web pages, Page.cshtml

All Articles

Sort by Score

Named 

11 Jan 2015 by Maciej Los
Have a look here - Software section.
10 Jul 2019 by CPallini
This happens because totaltime.Text it is not a compliant string representation of an integer. You might either Handle the excetpion (see the the code sample in the documentation[^]). or Use, as already suggested, the Int32.TryParse[^] method.
30 Sep 2020 by Richard Deeming
Your for loop doesn't actually do anything - you might as well assign 9 to the value variable to start with. You'll need to extract the original filename from the path. You'll probably also want to put the number before the file extension. ...
30 Sep 2020 by Pete O'Hanlon
If what you are after is to get something like the following: c:\myfolder\file.doc c:\myfolder\file1.doc c:\myfolder\file2.doc then your logic needs quite a bit of work. First, break your problem down. Step 1. Does the file already exist?public...
1 Nov 2012 by CafedeJamaica
To use the string builder in asp.netFirst add to your class using System.TextSecond add to your codevar myStringBuilder = new StringBuilder();if that fails check your references
12 Dec 2012 by Deenuji
Actually i using color extender tool to generate the colors....while i'm picking the colors, this tools return only hexadecimal values ...but i need to generate color name too...How to generate color name from this hex or RGB values????
12 Dec 2012 by Zaf Khan
You will have to cross reference the RGB values in a lookup table which contains the RECOGNISED colors
12 Dec 2012 by Suvabrata Roy
http://www.cambiaresearch.com/articles/25/convert-hex-string-to-dotnet-color[^]Enjoy
16 Dec 2012 by WebMaster
[^][^][^][^][^][^][^][^]
16 Dec 2012 by WebMaster
http://nfllivetc2pc.blogspot.com/2012/12/livetv-jacksonville-vs-miami-live.html[^][^][^]
22 Dec 2012 by WebMaster
http://livesportstv4u.com/?p=1833[^]http://livesportstv4u.com/?p=1833[^]http://livesportstv4u.com/?p=1833[^]
27 Feb 2013 by Daroosh
Can anyone point me to a Javascript tutorial that would allow me to create a simple Server/Client model communicating together via Named pipes?Thanks in advance!
1 Mar 2013 by Daroosh
I managed to create a Client in Javascript which opens a communication channel with a local server (implemented in C)via using Namedpipes.The following is how to open a NamedPipe in plain javascript:// Create ActiveX Objectvar object = new...
6 Mar 2013 by Daroosh
The above mentioned solution works only for IE, since both Chrome and Firefox don't support ActiveX Objects as most of you might have already known. This following method however, can be used in Firefox to open Namedpipe connection with a local service:var file =...
13 Aug 2013 by mamali-1346
hi all.i have a winform and console in c# 2013.i want to pipe them and send&receive data.data means character string.something like chat but so basic and user can't control this process.this process must be synchronized.they should be able to send and receive data at the same...
13 Aug 2013 by Sergey Alexandrovich Kryukov
Use two instances of a named pipe: one for one direction, another for another.Now, why "sync"? A pipe is a thread synchronization primitive by yourself. Don't even try to use others (unless you share data beyond the pipes between the threads in the same application). You just unconditionally...
11 Oct 2013 by ASP.NET Community
Step 1:   First we create a webpage named page1.cshtml.Step2: Then we take two Labels and two TextBoxes and a Submit button. (In this example one
11 Oct 2013 by ASP.NET Community
Following will be the example if you would like to use Request QueryString to pass value between 2 CSHTML page.We have have 2 web pages, Page.cshtml
19 Jan 2014 by Eren001
i have many picture box in my project ( 300 picture box ) and i want to name all this picture box something like this : PictureBox1_75PictureBox2_75 PictureBox3_75 ... it would be so easy if there's a place where i can select all the names and change it by using ctrl+H , is there's an easy...
19 Jan 2014 by Krunal Rohit
int i=0;foreach(Control ctrl in this.Controls){ if(ctrl is PictureBox) { i++; ctrl.Name = "picBox" + i; }}I haven't tried this, but this should work.!!
19 Jan 2014 by Vedat Ozan Oner
I haven't heard any IDE that supports your request, but you can do this in BASH(bourne-again shell) easily.Assuming that your source code files are all *.cs:ls *.cs | while read ado sed -i.bak 's/Picture\([0-9]*\)_75/picBox\1/g' $adoneI recommend you to look at sed utility...
19 Jan 2014 by Abhinav S
300 controls = you should create them dynamically and name them through code.
25 Mar 2014 by Member 10161384
name space for String Builder using System.Text;
12 Jan 2015 by billcodes
Thanks for your reply.But I am not looking for NER tool. I want to know about the practical scope of NER.
26 Oct 2017 by Member 9983063
Hello, Guys, I am facing an issue and issue is I have 9 checkboxes and 9 combo box item in combo box I want if I checked checkbox1 so combo box item 1 text = checkbox1 text please see the screenshot screenshot1 — imgbb.com[^] thanks in advance What I have tried: if(checkBox1.Checked == true) ...
26 Oct 2017 by Ralf Meier
If I understood it right you should change your code like this :if(checkBox1.Checked == true) { comboBox1.Items(0) = "saturday"; } 'SelectedItem' will work too - but only if you have allready select an Item. Also you should make sure that each Item you want to use is existing ...
10 Dec 2017 by Member 13568214
I have a project that contains a C# console app, and a client WPF app. The goal is to have any one client write to the server, then the message is sent to all connected clients from the server. Currently, I can get many clients to connect to the server using threads on the server side. The...
10 Dec 2017 by ________________
One solution (simplest) - clients should have timer, and try to read from server messages every 1 second (or less, or more - according business demands). Second - each client should be also server for main, and when main will have message from one client, it should broadcast this message to...
19 Mar 2019 by Member 13976609
Dear Experts, Please, help me resolve an issue in Visual Studio #C. I am creating utility for renaming of names of multiple files. Main idea = user opens the folder with files and selects required files for renaming in listbox. Selection can be performed via searching by special words in...
19 Mar 2019 by Gerry Schmitz
The "recommended" approach is to copy while renaming to a new (empty) folder. When certain all is ok, then "merge". See how the "pros" do it: IrfanView - Official Homepage - One of the Most Popular Viewers Worldwide[^]
10 Jul 2019 by Member 14525501
when I click the play button it show = System.FormatException: 'Input string was not in a correct format.' pls try your best to help me timer1 is a timer from the toolbox totaltime is a name of my timer, and a timer is on a label What I have tried: namespace my_first_app_dad { public...
11 Jul 2019 by emerR46
You can try this. If(Int.tryparse(totaltime.text, out int number)) { int num = number + 1; totaltime.text = $"{num}"; } Let me know if it works for you.
30 Sep 2020 by dejf111
Hello, I have problém with file name. I would like to put following number to file name. My code didn´t work. What I have tried: int value = 0; for (int i = 1; i
11 Jan 2015 by billcodes
What are the practical scopes of named entity recognition? I am doing some research on NER and I have implemented NER API in c#.I want to know any useful software where i can use NER. Thanks in advance.
1 Nov 2012 by Deenuji
how to add string builder namespace in asp.net???? i can add in c#.net but i can't in asp.net!!! pls any one help me???
27 Dec 2012 by WebMaster
http://ncaa-tv2pc.blogspot.com/2012/12/watch-military-bowl-vs-washington-live.html[^]http://ncaa-tv2pc.blogspot.com/2012/12/watch-military-bowl-vs-washington-live.html[^]http://ncaa-tv2pc.blogspot.com/2012/12/watch-military-bowl-vs-washington-live.html[^]http://ncaa-...
13 Oct 2014 by Muhammad Taqi Hassan Bukhari
I am doing a project on asp.net Web application, and have multiple classess in folder such asAccount/Login/login.cs,forgetpassword.cs,resetpassword.csAccount/Register/register.csroot/dbconnection.csand want to access these classes function's in one another, how to import like...